summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/util
Commit message (Expand)AuthorAgeFilesLines
* IOUtil.copyStream2ByteBuffer: Turns out on Android, no -1 (EOS) is returned -...Sven Gothel2013-02-011-2/+2
* IOUtil.copyStream2ByteBuffer: read while numRead > -1 ; add variant w/ initia...Sven Gothel2013-02-011-4/+19
* Modified Java 1.5 Buffers patch 2b7d1b1d25cb2cd73311ec9159b465f0391bf5e0 - Ma...Sven Gothel2013-01-191-1/+2
* RecursiveLock.getHoldCount(): Fix API doc formattingSven Gothel2013-01-181-4/+7
* PrimitiveStack: Add 'void position(int)' to set new position. Add test case w...Sven Gothel2012-12-312-6/+22
* Add com.jogamp.common.util.PrimitiveStack (FloatStack and IntegerStack), a si...Sven Gothel2012-12-302-0/+229
* IntIntHashMap: Add privileged for 'getDeclaredMethod(..)'; Add StringBuilder ...v2.0-rc11Sven Gothel2012-10-311-42/+75
* IntBitfield: Add API doc; Enhance put() method, return previous value to be u...Sven Gothel2012-10-271-7/+27
* Adding com.jogamp.common.util.IntBitfield: Simple bitfield holder class using...Sven Gothel2012-10-271-0/+71
* VersionNumber: API doc fixSven Gothel2012-10-241-1/+1
* VersionNumber: Add API doc for string parsingSven Gothel2012-10-241-0/+7
* VersionNumber: Remove printing Exception (was added for debugging purposes)Sven Gothel2012-10-241-1/+1
* Fix VersionNumber: Non digits cut off pattern was '\D.*' and cut off digits i...Sven Gothel2012-10-241-43/+41
* Merge remote-tracking branch 'hharrison/RFC'Sven Gothel2012-10-171-1/+1
|\
| * gluegen: generics annotations for various ArrayList/List useHarvey Harrison2012-10-151-1/+1
* | Buffers: Add normalized put methods, i.e. incl. value range conversion; New u...Sven Gothel2012-10-171-0/+161
|/
* SingletonInstanceServerSocket: Add unit tests; Create new server Thread @ sta...Sven Gothel2012-09-211-5/+8
* IOUtil: Better resource location debug info; RunnableTask adds 'flush()' meth...Sven Gothel2012-07-052-18/+49
* Lock Cleanup (API Change)Sven Gothel2012-06-275-8/+16
* Implement Bug #598 - JOGL ALL JAR File Change incl. it's Native Jar URL Deriv...Sven Gothel2012-06-263-183/+290
* Fix Bug 591: Fix 'jnlp.' aliasing of PropertyAccess.getProperty(..):Sven Gothel2012-06-211-17/+30
* Fix IOUtil: Query FileOutputStream constructor for each use (don't cache), ut...Sven Gothel2012-06-211-9/+28
* Fix TempFileCache/LauncherTempFileCache (regression commit: 1468286bf569a493e...v2.0-rc9Sven Gothel2012-06-203-34/+47
* Fix Platform static initialization interdependencies w/ GlueGen native librar...Sven Gothel2012-06-183-5/+6
* Fix Bug 587: Use alternative storage location if platform's temp directory is...Sven Gothel2012-06-162-93/+333
* Fix Bug 583: Remove Android compile-time dependencies and exclude Android spe...Sven Gothel2012-06-042-27/+14
* PropertyAccess: Cleanup code, adding comment.v2.0-rc8v2.0-rc7Sven Gothel2012-04-251-7/+6
* StringBuffer -> StringBuilder (Local objects, no concurrency)Sven Gothel2012-04-162-2/+2
* IOUtil: Add fail-safe getFileOutputStream(..) (inspired by pngj helper class)Sven Gothel2012-04-071-0/+36
* Fix IOUtil: Handle all '../' and './' cases by reducing the path.Sven Gothel2012-04-021-21/+42
* Add support for armhf/gnueabihf resulting in new 'os.and.arch' := [ 'android-...Sven Gothel2012-03-282-1/+14
* Platform: Add AWT_AVAILABLE 'knowledge'; RunnableExecutor: Add AWTEDT impl. /...Sven Gothel2012-03-263-5/+12
* RunnableExecutor: Add (c) headerSven Gothel2012-03-261-0/+27
* DynamicLibraryBundle*: Allow DynamicLibraryBundleInfo impl. to designate a th...Sven Gothel2012-03-261-0/+23
* Add 'asset' URLConnection; IOUtil uses URLConnection / incr. effeciency; Andr...Sven Gothel2012-03-171-91/+159
* PropertyAccess: Push down 'isPropertyDefined(final String property, final boo...Sven Gothel2012-03-132-6/+2
* SecurityUtil: Generalize cert validation and AccessControlContext query; Prop...Sven Gothel2012-03-137-46/+322
* Intro.: PropertyAccess ; Added safe PropertyAccess for JNILibLoaderBase, Plat...Sven Gothel2012-03-132-4/+10
* Stabilize open InputStream's / Closeable's: Decorate w/ try-finally and close...Sven Gothel2012-03-102-2/+26
* TempJarCache: Check for NULL jarURL and reuse contains queriesSven Gothel2012-03-071-6/+15
* Further fix for bug 537 - Catch IllegalArgumentException in Platform.loadGlue...Sven Gothel2012-01-052-15/+52
* RecursiveThreadGroupLock: New recursive lock interface and impl, allowing 'sp...Sven Gothel2011-12-112-1/+146
* Cleanup Lock Package: API doc, complete throws declaration, interface Recursi...Sven Gothel2011-12-113-3/+14
* TempJarCache/JNILibLoaderBase: Identify the Jar files by their URL within our...Sven Gothel2011-12-011-37/+61
* Refine TempJarCache/JNILibLoaderBase ; Add TempFileCache destroy() for instance.Sven Gothel2011-12-012-20/+67
* Fix regression (#2) of commit 04391a3f417e10e1b6dafbd8becc63659af633c30 (remo...Sven Gothel2011-11-291-1/+1
* Fix TempJarCache's Multi-User Bug (Reported by Martin Hegedus)Sven Gothel2011-11-293-134/+211
* Fix regresseion of commit 04391a3f417e10e1b6dafbd8becc63659af633c3 (forced pe...Sven Gothel2011-11-291-1/+1
* JarUtil (Fix Bug 522): Handle case where given URL doesn't contain any '/' (e...Sven Gothel2011-11-291-5/+11
* JarUtil: Improve Robustness (Bug 522) and API doc, prepare for Jar-In-Jar. Ad...Sven Gothel2011-11-293-43/+222