diff options
author | Sven Gothel <[email protected]> | 2010-11-15 13:25:18 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-15 13:25:18 +0100 |
commit | a8ab404afc50630329220f4049e1d11d284e0a82 (patch) | |
tree | fef7beec11fe831839d1bd78b4b165a453ee6380 /src/java/com/jogamp/common/os/DynamicLibraryBundle.java | |
parent | ffb589a35abf34f313312617e065b444c5f705b3 (diff) |
Fix API doc
Diffstat (limited to 'src/java/com/jogamp/common/os/DynamicLibraryBundle.java')
-rwxr-xr-x | src/java/com/jogamp/common/os/DynamicLibraryBundle.java | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java index 6e8130f..56029a2 100755 --- a/src/java/com/jogamp/common/os/DynamicLibraryBundle.java +++ b/src/java/com/jogamp/common/os/DynamicLibraryBundle.java @@ -39,11 +39,15 @@ import com.jogamp.common.jvm.JNILibLoaderBase; * <li>The JNI glue-code native library, eg jogl_desktop.dll. From heron this is referred as the Glue</li> * </ul><br> * An instance provides a complete {@link com.jogamp.common.os.DynamicLookupHelper} - * to {@link com.jogamp.gluegen.runtime.ProcAddressTable#reset(com.jogamp.common.os.DynamicLookupHelper lookup)} + * to {@link com.jogamp.gluegen.runtime.ProcAddressTable#reset(com.jogamp.common.os.DynamicLookupHelper) reset} * the {@link com.jogamp.gluegen.runtime.ProcAddressTable}.<br> - * At construction, it loads the Tool native library, loads Glue native library via - * {@link com.jogamp.common.os.DynamicLibraryBundleInfo#loadJNILibrary()} - * and resolves the optional Tool's <pre>GetProcAddress</pre> using {@link com.jogamp.common.os.DynamicLibraryBundleInfo#getToolGetProcAddressFuncNameList()}. + * At construction, it: + * <ul> + * <li> loads the Tool native library via + * {@link com.jogamp.common.os.NativeLibrary#open(java.lang.String, java.lang.ClassLoader, boolean) NativeLibrary's open method}</li> + * <li> loads the {@link com.jogamp.common.jvm.JNILibLoaderBase#loadLibrary(java.lang.String, java.lang.String[], boolean) Glue native library}</li> + * <li> resolves the Tool's {@link com.jogamp.common.os.DynamicLibraryBundleInfo#getToolGetProcAddressFuncNameList() GetProcAddress}. (optional)</li> + * </ul> */ public class DynamicLibraryBundle implements DynamicLookupHelper { protected static final boolean DEBUG = NativeLibrary.DEBUG; |