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

#ifndef __java_awt_event_AdjustmentEvent__
#define __java_awt_event_AdjustmentEvent__

#pragma interface

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

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

public:
  AdjustmentEvent(::java::awt::Adjustable *, jint, jint, jint);
  AdjustmentEvent(::java::awt::Adjustable *, jint, jint, jint, jboolean);
  virtual ::java::awt::Adjustable * getAdjustable();
  virtual jint getValue();
  virtual jint getAdjustmentType();
  virtual jboolean getValueIsAdjusting();
  virtual ::java::lang::String * paramString();
private:
  static const jlong serialVersionUID = 5700290645205279921LL;
public:
  static const jint ADJUSTMENT_FIRST = 601;
  static const jint ADJUSTMENT_LAST = 601;
  static const jint ADJUSTMENT_VALUE_CHANGED = 601;
  static const jint UNIT_INCREMENT = 1;
  static const jint UNIT_DECREMENT = 2;
  static const jint BLOCK_DECREMENT = 3;
  static const jint BLOCK_INCREMENT = 4;
  static const jint TRACK = 5;
private:
  ::java::awt::Adjustable * __attribute__((aligned(__alignof__( ::java::awt::AWTEvent)))) adjustable;
  jint adjustmentType;
  jint value;
  jboolean isAdjusting;
public:
  static ::java::lang::Class class$;
};

#endif // __java_awt_event_AdjustmentEvent__