forked from SwiftJava/SwiftJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuitHandlerProxy.java
More file actions
32 lines (20 loc) · 1.01 KB
/
QuitHandlerProxy.java
File metadata and controls
32 lines (20 loc) · 1.01 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
/// generated by: genswift.java 'java/lang|java/util|java/sql|java/awt|javax/swing' ///
/// interface com.apple.eawt.QuitHandler ///
package org.swiftjava.com_apple;
@SuppressWarnings("JniMissingFunction")
public class QuitHandlerProxy implements com.apple.eawt.QuitHandler {
// address of proxy object
long __swiftObject;
QuitHandlerProxy( long __swiftObject ) {
this.__swiftObject = __swiftObject;
}
/// public abstract void com.apple.eawt.QuitHandler.handleQuitRequestWith(com.apple.eawt.AppEvent$QuitEvent,com.apple.eawt.QuitResponse)
public native void __handleQuitRequestWith( long __swiftObject, com.apple.eawt.AppEvent.QuitEvent arg0, com.apple.eawt.QuitResponse arg1 );
public void handleQuitRequestWith( com.apple.eawt.AppEvent.QuitEvent arg0, com.apple.eawt.QuitResponse arg1 ) {
__handleQuitRequestWith( __swiftObject, arg0, arg1 );
}
public native void __finalize( long __swiftObject );
public void finalize() {
__finalize( __swiftObject );
}
}