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

#ifndef __javax_swing_event_HyperlinkEvent__
#define __javax_swing_event_HyperlinkEvent__

#pragma interface

#include <java/util/EventObject.h>
extern "Java"
{
  namespace java
  {
    namespace net
    {
        class URL;
    }
  }
  namespace javax
  {
    namespace swing
    {
      namespace event
      {
          class HyperlinkEvent;
          class HyperlinkEvent$EventType;
      }
      namespace text
      {
          class Element;
      }
    }
  }
}

class javax::swing::event::HyperlinkEvent : public ::java::util::EventObject
{

public:
  HyperlinkEvent(::java::lang::Object *, ::javax::swing::event::HyperlinkEvent$EventType *, ::java::net::URL *);
  HyperlinkEvent(::java::lang::Object *, ::javax::swing::event::HyperlinkEvent$EventType *, ::java::net::URL *, ::java::lang::String *);
  HyperlinkEvent(::java::lang::Object *, ::javax::swing::event::HyperlinkEvent$EventType *, ::java::net::URL *, ::java::lang::String *, ::javax::swing::text::Element *);
  virtual ::javax::swing::text::Element * getSourceElement();
  virtual ::java::net::URL * getURL();
  virtual ::javax::swing::event::HyperlinkEvent$EventType * getEventType();
  virtual ::java::lang::String * getDescription();
private:
  static const jlong serialVersionUID = -2054640811732867012LL;
  ::javax::swing::event::HyperlinkEvent$EventType * __attribute__((aligned(__alignof__( ::java::util::EventObject)))) type;
  ::java::net::URL * url;
  ::java::lang::String * description;
  ::javax::swing::text::Element * element;
public:
  static ::java::lang::Class class$;
};

#endif // __javax_swing_event_HyperlinkEvent__