forked from SwiftJava/SwiftJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFocusAdapterProxy.java
More file actions
110 lines (80 loc) · 2.99 KB
/
FocusAdapterProxy.java
File metadata and controls
110 lines (80 loc) · 2.99 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/// generated by: genswift.java 'java/lang|java/util|java/sql|java/awt|javax/swing' ///
/// class java.awt.event.FocusAdapter ///
package org.swiftjava.java_awt;
@SuppressWarnings("JniMissingFunction")
public class FocusAdapterProxy extends java.awt.event.FocusAdapter {
// address of proxy object
long __swiftObject;
/// public java.awt.event.FocusAdapter()
FocusAdapterProxy( long __swiftObject ) {
super( );
this.__swiftObject = __swiftObject;
}
/// public boolean java.lang.Object.equals(java.lang.Object)
public native boolean __equals( long __swiftObject, java.lang.Object arg0 );
boolean entered_equals_0;
public boolean equals( java.lang.Object arg0 ) {
if ( !entered_equals_0 ) {
entered_equals_0 = true;
boolean __return = __equals( __swiftObject, arg0);
entered_equals_0 = false;
return __return;
}
else
return super.equals( arg0 );
}
/// public void java.awt.event.FocusAdapter.focusGained(java.awt.event.FocusEvent)
public native void __focusGained( long __swiftObject, java.awt.event.FocusEvent e );
boolean entered_focusGained_1;
public void focusGained( java.awt.event.FocusEvent e ) {
if ( !entered_focusGained_1 ) {
entered_focusGained_1 = true;
__focusGained( __swiftObject, e);
entered_focusGained_1 = false;
}
else
super.focusGained( e );
}
/// public void java.awt.event.FocusAdapter.focusLost(java.awt.event.FocusEvent)
public native void __focusLost( long __swiftObject, java.awt.event.FocusEvent e );
boolean entered_focusLost_2;
public void focusLost( java.awt.event.FocusEvent e ) {
if ( !entered_focusLost_2 ) {
entered_focusLost_2 = true;
__focusLost( __swiftObject, e);
entered_focusLost_2 = false;
}
else
super.focusLost( e );
}
/// public native int java.lang.Object.hashCode()
public native int __hashCode( long __swiftObject );
boolean entered_hashCode_3;
public int hashCode() {
if ( !entered_hashCode_3 ) {
entered_hashCode_3 = true;
int __return = __hashCode( __swiftObject );
entered_hashCode_3 = false;
return __return;
}
else
return super.hashCode( );
}
/// public java.lang.String java.lang.Object.toString()
public native java.lang.String __toString( long __swiftObject );
boolean entered_toString_4;
public java.lang.String toString() {
if ( !entered_toString_4 ) {
entered_toString_4 = true;
java.lang.String __return = __toString( __swiftObject );
entered_toString_4 = false;
return __return;
}
else
return super.toString( );
}
public native void __finalize( long __swiftObject );
public void finalize() {
__finalize( __swiftObject );
}
}