summaryrefslogtreecommitdiff
path: root/libjava/java/awt/event/ActionEvent.h
blob: a1eff2632232af00aa9a85d73543959ead981a93 (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
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __java_awt_event_ActionEvent__
#define __java_awt_event_ActionEvent__

#pragma interface

#include <java/awt/AWTEvent.h>
extern "Java"
{
  namespace java
  {
    namespace awt
    {
      namespace event
      {
          class ActionEvent;
      }
    }
  }
}

class java::awt::event::ActionEvent : public ::java::awt::AWTEvent
{

public:
  ActionEvent(::java::lang::Object *, jint, ::java::lang::String *);
  ActionEvent(::java::lang::Object *, jint, ::java::lang::String *, jint);
  ActionEvent(::java::lang::Object *, jint, ::java::lang::String *, jlong, jint);
  virtual ::java::lang::String * getActionCommand();
  virtual jlong getWhen();
  virtual jint getModifiers();
  virtual ::java::lang::String * paramString();
private:
  static const jlong serialVersionUID = -7671078796273832149LL;
public:
  static const jint SHIFT_MASK = 1;
  static const jint CTRL_MASK = 2;
  static const jint META_MASK = 4;
  static const jint ALT_MASK = 8;
  static const jint ACTION_FIRST = 1001;
  static const jint ACTION_LAST = 1001;
  static const jint ACTION_PERFORMED = 1001;
private:
  ::java::lang::String * __attribute__((aligned(__alignof__( ::java::awt::AWTEvent)))) actionCommand;
  jint modifiers;
  jlong when;
public:
  static ::java::lang::Class class$;
};

#endif // __java_awt_event_ActionEvent__