summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/os/DynamicLinker.java
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2013-10-17 21:06:56 -0700
committerHarvey Harrison <[email protected]>2013-10-17 21:06:56 -0700
commit791a2749886f02ec7b8db25bf8862e8269b96da5 (patch)
treec9be31d0bbbe8033b4a6a0cfad91a22b6575ced1 /src/java/com/jogamp/common/os/DynamicLinker.java
parent5b77e15500b7b19d35976603dd71e8b997b2d8ea (diff)
gluegen: remove trailing whitespace
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/java/com/jogamp/common/os/DynamicLinker.java')
-rw-r--r--src/java/com/jogamp/common/os/DynamicLinker.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/java/com/jogamp/common/os/DynamicLinker.java b/src/java/com/jogamp/common/os/DynamicLinker.java
index ed52413..3b1ec3f 100644
--- a/src/java/com/jogamp/common/os/DynamicLinker.java
+++ b/src/java/com/jogamp/common/os/DynamicLinker.java
@@ -39,10 +39,10 @@ public interface DynamicLinker {
* <p>
* Opens the named library, allowing system wide access for other <i>users</i>.
* </p>
- *
+ *
* @param pathname the full pathname for the library to open
* @param debug set to true to enable debugging
- * @return the library handle, maybe 0 if not found.
+ * @return the library handle, maybe 0 if not found.
* @throws SecurityException if user is not granted access for the named library.
*/
public long openLibraryGlobal(String pathname, boolean debug) throws SecurityException;
@@ -53,50 +53,50 @@ public interface DynamicLinker {
* <p>
* Opens the named library, restricting access to this process.
* </p>
- *
+ *
* @param pathname the full pathname for the library to open
* @param debug set to true to enable debugging
- * @return the library handle, maybe 0 if not found.
+ * @return the library handle, maybe 0 if not found.
* @throws SecurityException if user is not granted access for the named library.
*/
public long openLibraryLocal(String pathname, boolean debug) throws SecurityException;
-
+
/**
* If a {@link SecurityManager} is installed, user needs link permissions
* for <b>all</b> libraries, i.e. for <code>new RuntimePermission("loadLibrary.*");</code>!
- *
+ *
* @param symbolName global symbol name to lookup up system wide.
- * @return the library handle, maybe 0 if not found.
+ * @return the library handle, maybe 0 if not found.
* @throws SecurityException if user is not granted access for all libraries.
*/
public long lookupSymbolGlobal(String symbolName) throws SecurityException;
-
+
/**
- * Security checks are implicit by previous call of
+ * Security checks are implicit by previous call of
* {@link #openLibraryLocal(String, boolean)} or {@link #openLibraryGlobal(String, boolean)}
* retrieving the <code>librarHandle</code>.
- *
+ *
* @param libraryHandle a library handle previously retrieved via {@link #openLibraryLocal(String, boolean)} or {@link #openLibraryGlobal(String, boolean)}.
* @param symbolName global symbol name to lookup up system wide.
- * @return the library handle, maybe 0 if not found.
+ * @return the library handle, maybe 0 if not found.
* @throws IllegalArgumentException in case case <code>libraryHandle</code> is unknown.
*/
public long lookupSymbol(long libraryHandle, String symbolName) throws IllegalArgumentException;
-
+
/**
- * Security checks are implicit by previous call of
+ * Security checks are implicit by previous call of
* {@link #openLibraryLocal(String, boolean)} or {@link #openLibraryGlobal(String, boolean)}
* retrieving the <code>librarHandle</code>.
- *
+ *
* @param libraryHandle a library handle previously retrieved via {@link #openLibraryLocal(String, boolean)} or {@link #openLibraryGlobal(String, boolean)}.
* @throws IllegalArgumentException in case case <code>libraryHandle</code> is unknown.
*/
public void closeLibrary(long libraryHandle) throws IllegalArgumentException;
-
+
/**
- * Returns a string containing the last error.
- * Maybe called for debuging purposed if any method fails.
- * @return error string, maybe null. A null or non-null value has no semantics.
+ * Returns a string containing the last error.
+ * Maybe called for debuging purposed if any method fails.
+ * @return error string, maybe null. A null or non-null value has no semantics.
*/
public String getLastError();
}