changeset 13867:38c7543192e7

fixed JavaDoc
author twisti
date Tue, 04 Feb 2014 17:12:12 -0800
parents 2caa107f51ce
children e30bae026c93
files graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/NativeFunctionInterface.java
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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);
 }