# HG changeset patch # User twisti # Date 1391562732 28800 # Node ID 38c7543192e7bed9b24de349b5aaf7c9d5799668 # Parent 2caa107f51ce803c455f15c952faf8c769f8e093 fixed JavaDoc diff -r 2caa107f51ce -r 38c7543192e7 graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/NativeFunctionInterface.java --- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/NativeFunctionInterface.java Tue Feb 04 17:18:16 2014 +0100 +++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/NativeFunctionInterface.java Tue Feb 04 17:12:12 2014 -0800 @@ -37,8 +37,8 @@ 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 @@ -49,8 +49,8 @@ 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 @@ -60,7 +60,7 @@ 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 @@ -71,8 +71,8 @@ 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 @@ -84,8 +84,8 @@ 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 @@ -95,11 +95,11 @@ 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); }