All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.SavePanel

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Responder
                   |
                   +----com.apple.alpha.app.Window
                           |
                           +----com.apple.alpha.app.Panel
                                   |
                                   +----com.apple.alpha.app.SavePanel

public class SavePanel
extends Panel
This class wraps the Objective-C class NSSavePanel.


Constructor Index

 o SavePanel()
This default constructor is equivalent to Objective-C's [[NSSavePanel alloc] init].
 o SavePanel(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o SavePanel(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.
 o SavePanel(Rect, int, int, boolean)
This constructor has the same effect as calling - initWithContentRect:styleMask:backing:defer: on a newly allocated object.
 o SavePanel(Rect, int, int, boolean, Screen)
This constructor has the same effect as calling - initWithContentRect:styleMask:backing:defer:screen: on a newly allocated object.

Method Index

 o accessoryView()
A wrapper for the - accessoryView Objective-C instance method.
 o cancel(Object)
A wrapper for the - cancel: Objective-C instance method.
 o directory()
A wrapper for the - directory Objective-C instance method.
 o filename()
A wrapper for the - filename Objective-C instance method.
 o ok(Object)
A wrapper for the - ok: Objective-C instance method.
 o prompt()
A wrapper for the - prompt Objective-C instance method.
 o requiredFileType()
A wrapper for the - requiredFileType Objective-C instance method.
 o runModal()
A wrapper for the - runModal Objective-C instance method.
 o runModalInDirectoryWithFile(String, String)
A wrapper for the - runModalForDirectory:file: Objective-C instance method.
 o savePanel()
A wrapper for the + savePanel Objective-C class method.
 o selectText(Object)
A wrapper for the - selectText: Objective-C instance method.
 o setAccessoryView(View)
A wrapper for the - setAccessoryView: Objective-C instance method.
 o setDelegate(Object)
A wrapper for the - setDelegate: Objective-C instance method.
 o setDirectory(String)
A wrapper for the - setDirectory: Objective-C instance method.
 o setPrompt(String)
A wrapper for the - setPrompt: Objective-C instance method.
 o setRequiredFileType(String)
A wrapper for the - setRequiredFileType: Objective-C instance method.
 o setTitle(String)
A wrapper for the - setTitle: Objective-C instance method.
 o setTreatsFilePackagesAsDirectories(boolean)
A wrapper for the - setTreatsFilePackagesAsDirectories: Objective-C instance method.
 o title()
A wrapper for the - title Objective-C instance method.
 o treatsFilePackagesAsDirectories()
A wrapper for the - treatsFilePackagesAsDirectories Objective-C instance method.
 o validateVisibleColumns()
A wrapper for the - validateVisibleColumns Objective-C instance method.

Constructors

 o SavePanel
 protected SavePanel(boolean shouldAllocate,
                     int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o SavePanel
 public SavePanel()
This default constructor is equivalent to Objective-C's [[NSSavePanel alloc] init].

 o SavePanel
 public SavePanel(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o SavePanel
 public SavePanel(Rect contentRect,
                  int aStyle,
                  int bufferingType,
                  boolean flag)
This constructor has the same effect as calling - initWithContentRect:styleMask:backing:defer: on a newly allocated object.

 o SavePanel
 public SavePanel(Rect contentRect,
                  int aStyle,
                  int bufferingType,
                  boolean flag,
                  Screen screen)
This constructor has the same effect as calling - initWithContentRect:styleMask:backing:defer:screen: on a newly allocated object.

Methods

 o savePanel
 public static native SavePanel savePanel()
A wrapper for the + savePanel Objective-C class method.

 o ok
 public native void ok(Object sender)
A wrapper for the - ok: Objective-C instance method.

 o cancel
 public native void cancel(Object sender)
A wrapper for the - cancel: Objective-C instance method.

 o runModalInDirectoryWithFile
 public native int runModalInDirectoryWithFile(String path,
                                               String name)
A wrapper for the - runModalForDirectory:file: Objective-C instance method.

 o runModal
 public native int runModal()
A wrapper for the - runModal Objective-C instance method.

 o filename
 public native String filename()
A wrapper for the - filename Objective-C instance method.

 o setDirectory
 public native void setDirectory(String path)
A wrapper for the - setDirectory: Objective-C instance method.

 o directory
 public native String directory()
A wrapper for the - directory Objective-C instance method.

 o setPrompt
 public native void setPrompt(String prompt)
A wrapper for the - setPrompt: Objective-C instance method.

 o prompt
 public native String prompt()
A wrapper for the - prompt Objective-C instance method.

 o setTitle
 public native void setTitle(String title)
A wrapper for the - setTitle: Objective-C instance method.

Overrides:
setTitle in class Window
 o title
 public native String title()
A wrapper for the - title Objective-C instance method.

Overrides:
title in class Window
 o setRequiredFileType
 public native void setRequiredFileType(String type)
A wrapper for the - setRequiredFileType: Objective-C instance method.

 o requiredFileType
 public native String requiredFileType()
A wrapper for the - requiredFileType Objective-C instance method.

 o setTreatsFilePackagesAsDirectories
 public native void setTreatsFilePackagesAsDirectories(boolean flag)
A wrapper for the - setTreatsFilePackagesAsDirectories: Objective-C instance method.

 o treatsFilePackagesAsDirectories
 public native boolean treatsFilePackagesAsDirectories()
A wrapper for the - treatsFilePackagesAsDirectories Objective-C instance method.

 o setAccessoryView
 public native void setAccessoryView(View aView)
A wrapper for the - setAccessoryView: Objective-C instance method.

 o accessoryView
 public native View accessoryView()
A wrapper for the - accessoryView Objective-C instance method.

 o setDelegate
 public native void setDelegate(Object anObject)
A wrapper for the - setDelegate: Objective-C instance method.

Overrides:
setDelegate in class Window
 o validateVisibleColumns
 public native void validateVisibleColumns()
A wrapper for the - validateVisibleColumns Objective-C instance method.

 o selectText
 public native void selectText(Object sender)
A wrapper for the - selectText: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index