All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.ApplicationDelegate

public interface ApplicationDelegate
This interface wraps the Objective-C category defining delegate methods of the NSApplication class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o applicationOpenFile(Application, String)
A wrapper for the - application:openFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).
 o applicationOpenFileWithoutUI(Object, String)
A wrapper for the - application:openFileWithoutUI: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).
 o applicationOpenTempFile(Application, String)
A wrapper for the - application:openTempFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).
 o applicationOpenUntitledFile(Application)
A wrapper for the - applicationOpenUntitledFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).
 o applicationPrintFile(Application, String)
A wrapper for the - application:printFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).
 o applicationShouldTerminate(Application)
A wrapper for the - applicationShouldTerminate: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).
 o applicationShouldTerminateAfterLastWindowClosed(Application)
A wrapper for the - applicationShouldTerminateAfterLastWindowClosed: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).

Methods

 o applicationShouldTerminate
 public abstract boolean applicationShouldTerminate(Application sender)
A wrapper for the - applicationShouldTerminate: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).

 o applicationOpenFile
 public abstract boolean applicationOpenFile(Application sender,
                                             String filename)
A wrapper for the - application:openFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).

 o applicationOpenTempFile
 public abstract boolean applicationOpenTempFile(Application sender,
                                                 String filename)
A wrapper for the - application:openTempFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).

 o applicationOpenUntitledFile
 public abstract boolean applicationOpenUntitledFile(Application sender)
A wrapper for the - applicationOpenUntitledFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).

 o applicationOpenFileWithoutUI
 public abstract boolean applicationOpenFileWithoutUI(Object sender,
                                                      String filename)
A wrapper for the - application:openFileWithoutUI: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).

 o applicationPrintFile
 public abstract boolean applicationPrintFile(Application sender,
                                              String filename)
A wrapper for the - application:printFile: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).

 o applicationShouldTerminateAfterLastWindowClosed
 public abstract boolean applicationShouldTerminateAfterLastWindowClosed(Application sender)
A wrapper for the - applicationShouldTerminateAfterLastWindowClosed: Objective-C instance method implemented by delegates of the Application class (known as the NSApplication Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index