| edu.rice.cs.util.swing.FileDisplayManager
All known Subclasses: edu.rice.cs.util.swing.DefaultFileDisplayManager,
FileDisplayManager | public interface FileDisplayManager extends DisplayManager<File>(Code) | | FileIconManagers choose the icons to use when displaying file using their icons in lists or trees.
|
Method Summary | |
public FileDisplay | makeFileDisplay(File f) | public FileDisplay | makeFileDisplay(File parent, String child) Creates a file display that displays a file as this manager specifies
Parameters: parent - the parent of the file to display using the display manager Parameters: child - the name of the child such that new File(parent, child) is the file to be displayed. | public FileDisplay | makeNewFolderDisplay(File parent) Creates a FileDisplay representing a new untitled folder that is yet to be created. | public void | update() Notifies the manager that the file system has changed. |
makeFileDisplay | public FileDisplay makeFileDisplay(File f)(Code) | | Creates a file display that displays a file as this manager specifies
Parameters: f - the file to display using the display manager the file display object used to display a file's name |
makeFileDisplay | public FileDisplay makeFileDisplay(File parent, String child)(Code) | | Creates a file display that displays a file as this manager specifies
Parameters: parent - the parent of the file to display using the display manager Parameters: child - the name of the child such that new File(parent, child) is the file to be displayed. the file display object used to display a file's name |
makeNewFolderDisplay | public FileDisplay makeNewFolderDisplay(File parent)(Code) | | Creates a FileDisplay representing a new untitled folder that is yet to be created.
Parameters: parent - the parent location to place this new folder the new file display |
update | public void update()(Code) | | Notifies the manager that the file system has changed. This may affect the way the manager chooses icons for the files.
|
|
|