Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refine ExceptionUtils: Shorten method name, dumpThrowable uses dumpStack | Sven Gothel | 2014-10-26 | 1 | -1/+2 |
| | |||||
* | gluegen: remove unused imports, unneeded semicolons, add missing @Override ↵ | Harvey Harrison | 2014-07-07 | 1 | -0/+1 |
| | | | | annotations | ||||
* | Code Clean-Up based on our Recommended Settings (jogamp-scripting ↵ | Sven Gothel | 2014-07-03 | 1 | -42/+42 |
| | | | | | | | | | | | | | | | c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) - Change non static accesses to static members using declaring type - Change indirect accesses to static members to direct accesses (accesses through subtypes) - Add final modifier to private fields - Add final modifier to method parameters - Add final modifier to local variables - Remove unnecessary casts - Remove unnecessary '$NON-NLS$' tags - Remove trailing white spaces on all lines | ||||
* | ReflectionUtil.getConstructor: Add 'initializeClazz' argument, allowing to ↵ | Sven Gothel | 2014-06-17 | 1 | -9/+10 |
| | | | | defer static class initialization | ||||
* | Bug 972 - Reduce ClassLoader Lookup, i.e. Class.forName(..) / Instrument ↵ | Sven Gothel | 2014-02-12 | 1 | -8/+99 |
| | | | | ReflectionUtil's forName(..) usage | ||||
* | gluegen: remove trailing whitespace | Harvey Harrison | 2013-10-17 | 1 | -27/+27 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | StringBuffer -> StringBuilder (Local objects, no concurrency) | Sven Gothel | 2012-04-16 | 1 | -1/+1 |
| | |||||
* | Platform: Add AWT_AVAILABLE 'knowledge'; RunnableExecutor: Add AWTEDT impl. ↵ | Sven Gothel | 2012-03-26 | 1 | -2/+7 |
| | | | | / API doc cleanup; DynamicLibraryBundle: Add getDefaultRunnableExecutor() | ||||
* | ReflectionUtil: Catch NoClassDefFoundError @ getMethod() for robustness | Sven Gothel | 2011-11-24 | 1 | -3/+11 |
| | |||||
* | RunnableTask: Add documentation, incl. unit test. Add ↵ | Sven Gothel | 2011-11-22 | 1 | -0/+28 |
| | | | | ReflectionUtil.MethodAccess, a convenient Method instance accessor. | ||||
* | Enhance ReflectionUtil getConstructor(..) w/ 2nd attempt of cstr look-up w/ ↵ | Sven Gothel | 2011-09-30 | 1 | -5/+39 |
| | | | | assignable types | ||||
* | Enhancement/GenericStyle: | Sven Gothel | 2011-09-19 | 1 | -21/+21 |
| | | | | | | | | | | | | | | | | | | - NativeLibrary: - add isValidNativeLibraryName(..) - generic style - Platform - add getOSAndArch(), getOSAndArch(..) - IOUtil - add getClassFileName(..) - add getBasename(..) - add getDirname(..) - added doc - ReflectionUtil - generic style | ||||
* | ReflectionUtil: split up createInstance() / use var-args where possible w/o ↵ | Sven Gothel | 2011-03-19 | 1 | -7/+16 |
| | | | | change | ||||
* | small cleanup in uitl package | Michael Bien | 2011-02-26 | 1 | -4/+0 |
| | | | | | | - StringBuffer -> StringBuilder - ReflectionUtil.getBaseName -> class.getSimpleName() - cleanup imports, generics and @Override for all touched classes | ||||
* | Fix: Remove unused argument ClassLoader | Sven Gothel | 2011-02-13 | 1 | -3/+2 |
| | |||||
* | Move implementation private files from com.jogamp.<module>.impl. to ↵ | Sven Gothel | 2011-02-09 | 1 | -1/+1 |
| | | | | | | | | | | | | jogamp.<module> - com.jogamp.common.impl -> jogamp.common This sorts implementation details from the top level, ie skipping the public 'com', allowing a better seperation of public classes and implementation details and also reduces strings. This approach of public/private seperation is also used in the OpenJDK. | ||||
* | ReflectionUtil: Add getBaseName(Class) | Sven Gothel | 2010-12-19 | 1 | -0/+5 |
| | |||||
* | Add generic VersionUtil (Manifest and Platform) ; Add VersionInfo | Sven Gothel | 2010-11-10 | 1 | -0/+1 |
| | |||||
* | Moved locking to: com.jogamp.common.util.locks ; Better abstraction ; Misc ↵ | Sven Gothel | 2010-10-14 | 1 | -16/+33 |
| | | | | changes | ||||
* | Split up method call for reusage | Sven Gothel | 2010-07-23 | 1 | -11/+36 |
| | |||||
* | Moving ClassLoader parameter to the end, which seems to be easier to read. | Sven Gothel | 2010-06-28 | 1 | -7/+7 |
| | |||||
* | pass a ClassLoader to all methods which load classes. (ReflectionUtil) | Michael Bien | 2010-06-17 | 1 | -18/+18 |
| | |||||
* | ReflectionUtil: Added callStaticMethod(..) | Sven Gothel | 2010-05-05 | 1 | -8/+48 |
| | |||||
* | Fix Exception Handling .. | Sven Gothel | 2010-04-20 | 1 | -27/+47 |
| | |||||
* | Importing files from JOGL (preserving history) | Sven Gothel | 2010-04-19 | 1 | -15/+16 |
| | | | | | | | | | git mv src/nativewindow/native/JVM_Tool.c src/native/common/JVM_Tool.c git mv src/nativewindow/classes/com/jogamp/nativewindow/impl/NativeLibLoaderBase.java src/java/com/jogamp/common/jvm/JNILibLoaderBase.java git mv src/nativewindow/classes/com/jogamp/nativewindow/impl/jvm/JVMUtil.java src/java/com/jogamp/common/jvm/JVMUtil.java git mv src/nativewindow/classes/com/jogamp/nativewindow/impl/NWReflection.java src/java/com/jogamp/common/util/ReflectionUtil.java Adding own JogampRuntimeException and Debug class | ||||
* | Moving imported files to proper place | Sven Gothel | 2010-04-19 | 1 | -0/+188 |