FileDialogPeer is an interface that defines the basis for a file dialog box.
public abstract interface java.awt.peer.FileDialogPeer extends java.awt.peer.DialogPeer { // Interface Methods public abstract void setDirectory (String directory); public abstract void setFile (String file); public abstract void setFilenameFilter (FilenameFilter filter); }
Initial directory for file dialog's peer.
Changes the directory displayed in the file dialog's peer.
Initial filename for the file dialog's peer.
Changes the default file selection for the file dialog's peer.
Initial filter for file dialog's peer.
Changes the current filename filter of the file dialog's peer.
DialogPeer, FilenameFilter, String