summaryrefslogtreecommitdiff
path: root/libjava/gnu/classpath/jdwp/transport/SocketTransport.h
blob: b5fe5c327cd6dd9d9b5783bd9c85d023b827af0a (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_classpath_jdwp_transport_SocketTransport__
#define __gnu_classpath_jdwp_transport_SocketTransport__

#pragma interface

#include <java/lang/Object.h>
extern "Java"
{
  namespace gnu
  {
    namespace classpath
    {
      namespace jdwp
      {
        namespace transport
        {
            class SocketTransport;
        }
      }
    }
  }
  namespace java
  {
    namespace net
    {
        class Socket;
    }
  }
}

class gnu::classpath::jdwp::transport::SocketTransport : public ::java::lang::Object
{

public: // actually package-private
  SocketTransport();
public:
  virtual void configure(::java::util::HashMap *);
  virtual void initialize();
  virtual void shutdown();
  virtual ::java::io::InputStream * getInputStream();
  virtual ::java::io::OutputStream * getOutputStream();
  static ::java::lang::String * NAME;
private:
  static ::java::lang::String * _PROPERTY_ADDRESS;
  static ::java::lang::String * _PROPERTY_SERVER;
  jint __attribute__((aligned(__alignof__( ::java::lang::Object)))) _port;
  ::java::lang::String * _host;
  jboolean _server;
  ::java::net::Socket * _socket;
public:
  static ::java::lang::Class class$;
};

#endif // __gnu_classpath_jdwp_transport_SocketTransport__