Skip to content

Commit

Permalink
fixed JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
twisti committed Feb 5, 2014
1 parent dc22c4c commit a031599
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public interface NativeFunctionInterface {
NativeLibraryHandle getLibraryHandle(String libPath);

/**
* Resolves the {@Code NativeFunctionHandle} of a native function that can be called. Use
* a {@code NativeFunctionHandle} to invoke the native target function.
* Resolves the {@code NativeFunctionHandle} of a native function that can be called. Use a
* {@code NativeFunctionHandle} to invoke the native target function.
*
* @param libraryHandle the handle to a resolved library
* @param functionName the name of the function to be resolved
Expand All @@ -49,8 +49,8 @@ public interface NativeFunctionInterface {
NativeFunctionHandle getFunctionHandle(NativeLibraryHandle libraryHandle, String functionName, Class returnType, Class[] argumentTypes);

/**
* Resolves the {@Code NativeFunctionHandle} of a native function that can be called. Use
* a {@code NativeFunctionHandle} to invoke the native target function.
* Resolves the {@code NativeFunctionHandle} of a native function that can be called. Use a
* {@code NativeFunctionHandle} to invoke the native target function.
*
* @param functionPointer the function pointer
* @param returnType the type of the return value
Expand All @@ -60,7 +60,7 @@ public interface NativeFunctionInterface {
NativeFunctionHandle getFunctionHandle(NativeFunctionPointer functionPointer, Class returnType, Class[] argumentTypes);

/**
* Resolves the function pointer {@Code NativeFunctionPointer} of a native function. A
* Resolves the function pointer {@code NativeFunctionPointer} of a native function. A
* {@code NativeFunctionPointer} wraps the raw pointer value.
*
* @param libraryHandles the handles to a various resolved library, the first library containing
Expand All @@ -71,8 +71,8 @@ public interface NativeFunctionInterface {
NativeFunctionPointer getFunctionPointer(NativeLibraryHandle[] libraryHandles, String functionName);

/**
* Resolves the {@Code NativeFunctionHandle} of a native function that can be called. Use
* a {@code NativeFunctionHandle} to invoke the native target function.
* Resolves the {@code NativeFunctionHandle} of a native function that can be called. Use a
* {@code NativeFunctionHandle} to invoke the native target function.
*
* @param libraryHandles the handles to a various resolved library, the first library containing
* the method wins
Expand All @@ -84,8 +84,8 @@ public interface NativeFunctionInterface {
NativeFunctionHandle getFunctionHandle(NativeLibraryHandle[] libraryHandles, String functionName, Class returnType, Class[] argumentTypes);

/**
* Resolves the {@Code NativeFunctionHandle} of a native function that can be called. Use
* a {@code NativeFunctionHandle} to invoke the native target function.
* Resolves the {@code NativeFunctionHandle} of a native function that can be called. Use a
* {@code NativeFunctionHandle} to invoke the native target function.
*
* @param functionName the name of the function to be resolved
* @param returnType the type of the return value
Expand All @@ -95,11 +95,11 @@ public interface NativeFunctionInterface {
NativeFunctionHandle getFunctionHandle(String functionName, Class returnType, Class[] argumentTypes);

/**
* Creates {@Code NativeFunctionPointer} from raw value. A {@code NativeFunctionPointer}
* wraps the raw pointer value.
* Creates {@code NativeFunctionPointer} from raw value. A {@code NativeFunctionPointer} wraps
* the raw pointer value.
*
* @param rawValue Raw pointer value
* @return {@Code NativeFunctionPointer} of the raw pointer
* @return {@code NativeFunctionPointer} of the raw pointer
*/
NativeFunctionPointer getNativeFunctionPointerFromRawValue(long rawValue);
}

0 comments on commit a031599

Please sign in to comment.