All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.SavePanelDelegate

public interface SavePanelDelegate
This interface wraps the Objective-C category defining delegate methods of the NSSavePanel 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 panelCompareFilenames(Object, String, String, boolean)
A wrapper for the - panel:compareFilename:with:caseSensitive: Objective-C instance method implemented by delegates of the SavePanel class (known as the NSSavePanel Objective-C class).
 o panelIsValidFilename(Object, String)
A wrapper for the - panel:isValidFilename: Objective-C instance method implemented by delegates of the SavePanel class (known as the NSSavePanel Objective-C class).
 o panelShouldShowFilename(Object, String)
A wrapper for the - panel:shouldShowFilename: Objective-C instance method implemented by delegates of the SavePanel class (known as the NSSavePanel Objective-C class).

Methods

 o panelIsValidFilename
 public abstract boolean panelIsValidFilename(Object sender,
                                              String filename)
A wrapper for the - panel:isValidFilename: Objective-C instance method implemented by delegates of the SavePanel class (known as the NSSavePanel Objective-C class).

 o panelShouldShowFilename
 public abstract boolean panelShouldShowFilename(Object sender,
                                                 String filename)
A wrapper for the - panel:shouldShowFilename: Objective-C instance method implemented by delegates of the SavePanel class (known as the NSSavePanel Objective-C class).

 o panelCompareFilenames
 public abstract int panelCompareFilenames(Object sender,
                                           String file1,
                                           String file2,
                                           boolean caseSensitive)
A wrapper for the - panel:compareFilename:with:caseSensitive: Objective-C instance method implemented by delegates of the SavePanel class (known as the NSSavePanel Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index