aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/nio/CharBuffer.java
diff options
context:
space:
mode:
authorMichael Koch <mkoch@gcc.gnu.org>2003-02-11 07:42:17 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-02-11 07:42:17 +0000
commitd19e783c45ab5b545af64a414e5edb4e946ba9de (patch)
treedf6f5ea53dd4c1bc3ba3577fe38a432e6c8f2672 /libjava/java/nio/CharBuffer.java
parentc0da2641298d4ccc6fd491b0ed0a5117292d1c20 (diff)
downloadgcc-d19e783c45ab5b545af64a414e5edb4e946ba9de.zip
gcc-d19e783c45ab5b545af64a414e5edb4e946ba9de.tar.gz
gcc-d19e783c45ab5b545af64a414e5edb4e946ba9de.tar.bz2
2003-02-11 Michael Koch <konqueror@gmx.de>
* java/nio/Buffer.java (cap, lim, pos, mark): Made private (Buffer): Added package private constructor. * java/nio/ByteBuffer.java (ByteBuffer): Implements Cloneable. (offset): New member variable. (readOnly): New member variable. (backing_buffer): New member variable. (allocateDirect): Throw exception and tell that direct buffers are not supported yet, documentation added. (allocate): Documentation added. (wrap): Documentation added. (ByteBuffer): New constructor. (hasArray): New method. (array): New method. (arrayOffset): New method. (get): Documentation added. (put): Documentation added. * java/nio/CharBuffer.java (CharBuffer): New constructor. (compareTo): Don't access member variables of Buffer directly. * java/nio/DoubleBuffer.java (allocateDirect): Throw exception and tell that direct buffers are not supported yet. * java/nio/FloatBuffer.java (allocateDirect): Throw exception and tell that direct buffers are not supported yet. * java/nio/IntBuffer.java (allocateDirect): Throw exception and tell that direct buffers are not supported yet. * java/nio/LongBuffer.java (allocateDirect): Throw exception and tell that direct buffers are not supported yet. * java/nio/MappedByteBuffer.java (MappedByteBuffer): New method. (force): New method. (isLoaded): New method. (load): New method. * java/nio/ShortBuffer.java (allocateDirect): Throw exception and tell that direct buffers are not supported yet. From-SVN: r62685
Diffstat (limited to 'libjava/java/nio/CharBuffer.java')
-rw-r--r--libjava/java/nio/CharBuffer.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/libjava/java/nio/CharBuffer.java b/libjava/java/nio/CharBuffer.java
index 2a21ef9..0e61302 100644
--- a/libjava/java/nio/CharBuffer.java
+++ b/libjava/java/nio/CharBuffer.java
@@ -88,6 +88,11 @@ public abstract class CharBuffer extends Buffer
{
return wrap (array, 0, array.length);
}
+
+ CharBuffer (int cap, int lim, int pos, int mark)
+ {
+ super (cap, lim, pos, mark);
+ }
/**
* @exception BufferUnderflowException FIXME
@@ -197,8 +202,8 @@ public abstract class CharBuffer extends Buffer
return 1;
int r = remaining ();
- int i1 = pos;
- int i2 = a.pos;
+ int i1 = position ();
+ int i2 = a.position ();
for (int i = 0; i < r; i++)
{