aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-08-31 03:23:30 +0200
committerSven Gothel <[email protected]>2011-08-31 03:23:30 +0200
commitcfb9e118e020707842e6b5136b07f5ab149540c1 (patch)
treea2c7e875e87c0a7f8d7faa3ed6b81ab1290abd50 /src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java
parent4a75b64107e157ff1db3991cf89bf8d856ddc0e6 (diff)
DynamicLibraryBundle*: Use generics for better spec / Drop Iterator in favor for int/size() for less temp objects
Diffstat (limited to 'src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java')
-rw-r--r--src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java b/src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java
index 081bac8..ca486bf 100644
--- a/src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java
+++ b/src/java/com/jogamp/common/os/DynamicLibraryBundleInfo.java
@@ -40,7 +40,7 @@ public interface DynamicLibraryBundleInfo {
* <li>Cg/CgGL example: [ [ "libCg.so", "Cg" ], [ "libCgGL.so", "CgGL" ] ] </li>
* </pre>
*/
- public List getToolLibNames();
+ public List<List<String>> getToolLibNames();
/** @return a list of Glue library names.<br>
* <ul>
@@ -51,14 +51,14 @@ public interface DynamicLibraryBundleInfo {
* Only the last entry is crucial, ie all other are optional preload dependencies and may generate errors,
* which are ignored.
*/
- public List/*<String>*/ getGlueLibNames();
+ public List<String> getGlueLibNames();
/** May return the native libraries <pre>GetProcAddressFunc</pre> names, the first found function is being used.<br>
* This could be eg: <pre> glXGetProcAddressARB, glXGetProcAddressARB </pre>.<br>
* If your Tool does not has this facility, just return null.
* @see #toolGetProcAddress(long, String)
*/
- public List getToolGetProcAddressFuncNameList() ;
+ public List<String> getToolGetProcAddressFuncNameList() ;
/** May implement the lookup function using the Tools facility.<br>
* The actual function pointer is provided to allow proper bootstrapping of the ProcAddressTable,