diff options
author | Michael Bien <[email protected]> | 2010-03-30 18:46:45 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-30 18:46:45 +0200 |
commit | 3946dbecf6018ddd7a404af60e7d7e9907491721 (patch) | |
tree | cb5bd3209426ce798b33e300416b7323f3cf9f3e /src/java/com/jogamp/gluegen/runtime/Int64Buffer.java | |
parent | 84e5ba7a4821469f43c0f4bbeaa8e383b203d050 (diff) |
introduced internal NativeBuffer interface, this can be made public as soon we move to java language level 5.
removed accidentally commited verbose javac property in build-junit.xml.
Diffstat (limited to 'src/java/com/jogamp/gluegen/runtime/Int64Buffer.java')
-rw-r--r-- | src/java/com/jogamp/gluegen/runtime/Int64Buffer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/runtime/Int64Buffer.java b/src/java/com/jogamp/gluegen/runtime/Int64Buffer.java index 98d0834..c110310 100644 --- a/src/java/com/jogamp/gluegen/runtime/Int64Buffer.java +++ b/src/java/com/jogamp/gluegen/runtime/Int64Buffer.java @@ -37,7 +37,7 @@ import java.nio.ByteBuffer; * @author Michael Bien * @author Sven Gothel */ -public abstract class Int64Buffer { +public abstract class Int64Buffer implements NativeBuffer/*<PointerBuffer>*/ { protected final ByteBuffer bb; protected int capacity; |