aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libjava/gnu/classpath/jdwp/transport/JdwpCommandPacket.h
blob: 6d67ad48c52c6d4f34a1939fed4e3bf5e9bcbf3a (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

// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __gnu_classpath_jdwp_transport_JdwpCommandPacket__
#define __gnu_classpath_jdwp_transport_JdwpCommandPacket__

#pragma interface

#include <gnu/classpath/jdwp/transport/JdwpPacket.h>
#include <gcj/array.h>

extern "Java"
{
  namespace gnu
  {
    namespace classpath
    {
      namespace jdwp
      {
        namespace transport
        {
            class JdwpCommandPacket;
        }
      }
    }
  }
}

class gnu::classpath::jdwp::transport::JdwpCommandPacket : public ::gnu::classpath::jdwp::transport::JdwpPacket
{

public:
  JdwpCommandPacket();
  JdwpCommandPacket(jbyte, jbyte);
  virtual jint getLength();
  virtual jbyte getCommandSet();
  virtual void setCommandSet(jbyte);
  virtual jbyte getCommand();
  virtual void setCommand(jbyte);
public: // actually protected
  virtual jint myFromBytes(JArray< jbyte > *, jint);
  virtual void myWrite(::java::io::DataOutputStream *);
  jbyte __attribute__((aligned(__alignof__( ::gnu::classpath::jdwp::transport::JdwpPacket)))) _commandSet;
  jbyte _command;
private:
  static const jint MINIMUM_LENGTH = 2;
public:
  static ::java::lang::Class class$;
};

#endif // __gnu_classpath_jdwp_transport_JdwpCommandPacket__