Packages  This Package  Prev  Next  Index  
	§3.9 Interface FileDialogPeer
The file dialog window peer interface specifies the methods that all implementations of 
Abstract Window Toolkit file dialog windows must define.
public  interface  java.awt.peer.FileDialogPeer
    extends java.awt.peer.DialogPeer  (II-§3.8)
{
        // Methods
    public abstract void setDirectory(String  dir);	§3.9.1
    public abstract void setFile(String  file);	§3.9.2
    public abstract void 	§3.9.3
        setFilenameFilter(FilenameFilter  filter);
}
setDirectory
public abstract void setDirectory(String  dir)
- Sets the directory of the file dialog window to be the specified directory.
- Parameters:
 dir
- the specific directory
 
setFile
public abstract void setFile(String  file)
- Sets the selected file for the file dialog window to be the specified file. 
- Parameters:
 file
- the file being set
 
setFilenameFilter
public abstract void
setFilenameFilter(FilenameFilter  filter)
- Sets the filename filter (I-§2.26) for this file dialog window to the specified 
filter
- Parameters:
 filter
- the specified filter
 
Packages  This Package  Prev  Next  Index
Java API Document (HTML generated by dkramer on April 22, 1996)
Copyright © 1996 Sun Microsystems, Inc.
All rights reserved
Please send any comments or corrections to doug.kramer@sun.com