summaryrefslogtreecommitdiff
path: root/libjava/gnu/java/nio/NIOSocket.h
blob: b987a6c9e9611d6d4e0a47b8c814ee26696de907 (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
50
51
52
53
54
55
56
57
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __gnu_java_nio_NIOSocket__
#define __gnu_java_nio_NIOSocket__

#pragma interface

#include <java/net/Socket.h>
extern "Java"
{
  namespace gnu
  {
    namespace java
    {
      namespace net
      {
          class PlainSocketImpl;
      }
      namespace nio
      {
          class NIOSocket;
          class SocketChannelImpl;
      }
    }
  }
  namespace java
  {
    namespace nio
    {
      namespace channels
      {
          class SocketChannel;
      }
    }
  }
}

class gnu::java::nio::NIOSocket : public ::java::net::Socket
{

public: // actually protected
  NIOSocket(::gnu::java::net::PlainSocketImpl *, ::gnu::java::nio::SocketChannelImpl *);
public:
  ::gnu::java::net::PlainSocketImpl * getPlainSocketImpl();
public: // actually package-private
  void setChannel(::gnu::java::nio::SocketChannelImpl *);
public:
  ::java::nio::channels::SocketChannel * getChannel();
private:
  ::gnu::java::net::PlainSocketImpl * __attribute__((aligned(__alignof__( ::java::net::Socket)))) impl;
  ::gnu::java::nio::SocketChannelImpl * channel;
public:
  static ::java::lang::Class class$;
};

#endif // __gnu_java_nio_NIOSocket__