OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / java / awt / event / AdjustmentEvent.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __java_awt_event_AdjustmentEvent__
5 #define __java_awt_event_AdjustmentEvent__
6
7 #pragma interface
8
9 #include <java/awt/AWTEvent.h>
10 extern "Java"
11 {
12   namespace java
13   {
14     namespace awt
15     {
16         class Adjustable;
17       namespace event
18       {
19           class AdjustmentEvent;
20       }
21     }
22   }
23 }
24
25 class java::awt::event::AdjustmentEvent : public ::java::awt::AWTEvent
26 {
27
28 public:
29   AdjustmentEvent(::java::awt::Adjustable *, jint, jint, jint);
30   AdjustmentEvent(::java::awt::Adjustable *, jint, jint, jint, jboolean);
31   virtual ::java::awt::Adjustable * getAdjustable();
32   virtual jint getValue();
33   virtual jint getAdjustmentType();
34   virtual jboolean getValueIsAdjusting();
35   virtual ::java::lang::String * paramString();
36 private:
37   static const jlong serialVersionUID = 5700290645205279921LL;
38 public:
39   static const jint ADJUSTMENT_FIRST = 601;
40   static const jint ADJUSTMENT_LAST = 601;
41   static const jint ADJUSTMENT_VALUE_CHANGED = 601;
42   static const jint UNIT_INCREMENT = 1;
43   static const jint UNIT_DECREMENT = 2;
44   static const jint BLOCK_DECREMENT = 3;
45   static const jint BLOCK_INCREMENT = 4;
46   static const jint TRACK = 5;
47 private:
48   ::java::awt::Adjustable * __attribute__((aligned(__alignof__( ::java::awt::AWTEvent)))) adjustable;
49   jint adjustmentType;
50   jint value;
51   jboolean isAdjusting;
52 public:
53   static ::java::lang::Class class$;
54 };
55
56 #endif // __java_awt_event_AdjustmentEvent__