From 61d318260a1c726f818da770f2e425411d9a5880 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Wed, 13 Nov 2002 18:43:20 +0000 Subject: 2002-11-13 Michael Koch * java/nio/ByteBuffer.java (allocate): New method. (wrap): New method. (put): New method. (get): New method. From-SVN: r59082 --- libjava/java/nio/ByteBuffer.java | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'libjava/java/nio') diff --git a/libjava/java/nio/ByteBuffer.java b/libjava/java/nio/ByteBuffer.java index 4b02f7f..874943a 100644 --- a/libjava/java/nio/ByteBuffer.java +++ b/libjava/java/nio/ByteBuffer.java @@ -39,4 +39,41 @@ package java.nio; public abstract class ByteBuffer extends Buffer { + public static ByteBuffer allocate (int capacity) + { + return null; + } + + final public static ByteBuffer wrap (byte[] array, int offset, int length) + { + return null; + } + + final public static ByteBuffer wrap (byte[] array) + { + return wrap (array, 0, array.length); + } + + final public ByteBuffer put (ByteBuffer src) + { + while (src.hasRemaining ()) + put (src.get ()); + + return this; + } + + final public ByteBuffer put (byte[] src, int offset, int length) + { + for (int i = offset; i < offset + length; i++) + put (src [i]); + return this; + } + public final ByteBuffer put (byte[] src) + { + return put (src, 0, src.length); + } + + public abstract byte get (); + + public abstract ByteBuffer put (byte b); } -- cgit v1.1