summaryrefslogtreecommitdiff
path: root/libjava/java/nio/LongBufferImpl.h
blob: ad28128bd41a894b5f702ec1b5d6cdfc58eea747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __java_nio_LongBufferImpl__
#define __java_nio_LongBufferImpl__

#pragma interface

#include <java/nio/LongBuffer.h>
#include <gcj/array.h>

extern "Java"
{
  namespace java
  {
    namespace nio
    {
        class ByteOrder;
        class LongBuffer;
        class LongBufferImpl;
    }
  }
}

class java::nio::LongBufferImpl : public ::java::nio::LongBuffer
{

public: // actually package-private
  LongBufferImpl(jint);
  LongBufferImpl(JArray< jlong > *, jint, jint, jint, jint, jint, jboolean);
public:
  jboolean isReadOnly();
  ::java::nio::LongBuffer * slice();
  ::java::nio::LongBuffer * duplicate();
  ::java::nio::LongBuffer * asReadOnlyBuffer();
  ::java::nio::LongBuffer * compact();
  jboolean isDirect();
  jlong get();
  ::java::nio::LongBuffer * put(jlong);
  jlong get(jint);
  ::java::nio::LongBuffer * put(jint, jlong);
  ::java::nio::ByteOrder * order();
private:
  jboolean __attribute__((aligned(__alignof__( ::java::nio::LongBuffer)))) readOnly;
public:
  static ::java::lang::Class class$;
};

#endif // __java_nio_LongBufferImpl__