summaryrefslogtreecommitdiff
path: root/libjava/javax/swing/event/AncestorEvent.h
blob: 6966e58fc64a202478acc4ddc4682879523263f7 (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
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __javax_swing_event_AncestorEvent__
#define __javax_swing_event_AncestorEvent__

#pragma interface

#include <java/awt/AWTEvent.h>
extern "Java"
{
  namespace java
  {
    namespace awt
    {
        class Container;
    }
  }
  namespace javax
  {
    namespace swing
    {
        class JComponent;
      namespace event
      {
          class AncestorEvent;
      }
    }
  }
}

class javax::swing::event::AncestorEvent : public ::java::awt::AWTEvent
{

public:
  AncestorEvent(::javax::swing::JComponent *, jint, ::java::awt::Container *, ::java::awt::Container *);
  virtual ::java::awt::Container * getAncestor();
  virtual ::java::awt::Container * getAncestorParent();
  virtual ::javax::swing::JComponent * getComponent();
private:
  static const jlong serialVersionUID = -8079801679695605002LL;
public:
  static const jint ANCESTOR_ADDED = 1;
  static const jint ANCESTOR_REMOVED = 2;
  static const jint ANCESTOR_MOVED = 3;
private:
  ::javax::swing::JComponent * __attribute__((aligned(__alignof__( ::java::awt::AWTEvent)))) sourceComponent;
  ::java::awt::Container * ancestor;
  ::java::awt::Container * ancestorParent;
public:
  static ::java::lang::Class class$;
};

#endif // __javax_swing_event_AncestorEvent__