summaryrefslogtreecommitdiff
path: root/libjava/java/nio/CharBufferImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/nio/CharBufferImpl.h')
-rw-r--r--libjava/java/nio/CharBufferImpl.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/libjava/java/nio/CharBufferImpl.h b/libjava/java/nio/CharBufferImpl.h
new file mode 100644
index 00000000000..4cbf50ec305
--- /dev/null
+++ b/libjava/java/nio/CharBufferImpl.h
@@ -0,0 +1,53 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __java_nio_CharBufferImpl__
+#define __java_nio_CharBufferImpl__
+
+#pragma interface
+
+#include <java/nio/CharBuffer.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace java
+ {
+ namespace nio
+ {
+ class ByteOrder;
+ class CharBuffer;
+ class CharBufferImpl;
+ }
+ }
+}
+
+class java::nio::CharBufferImpl : public ::java::nio::CharBuffer
+{
+
+public: // actually package-private
+ CharBufferImpl(jint);
+ CharBufferImpl(JArray< jchar > *, jint, jint, jint, jint, jint, jboolean);
+public:
+ CharBufferImpl(::java::nio::CharBufferImpl *);
+ jboolean isReadOnly();
+ ::java::nio::CharBuffer * slice();
+ ::java::nio::CharBuffer * duplicate();
+ ::java::nio::CharBuffer * asReadOnlyBuffer();
+ ::java::nio::CharBuffer * compact();
+ jboolean isDirect();
+ ::java::lang::CharSequence * subSequence(jint, jint);
+ jchar get();
+ ::java::nio::CharBuffer * put(jchar);
+ jchar get(jint);
+ ::java::nio::CharBuffer * get(JArray< jchar > *, jint, jint);
+ ::java::nio::CharBuffer * put(JArray< jchar > *, jint, jint);
+ ::java::nio::CharBuffer * put(jint, jchar);
+ ::java::nio::ByteOrder * order();
+private:
+ jboolean __attribute__((aligned(__alignof__( ::java::nio::CharBuffer)))) readOnly;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __java_nio_CharBufferImpl__