Uses of Class
edu.cmu.sun.model.FileNodeModel

Packages that use FileNodeModel
edu.cmu.sun.model All of the back-end logic that determines the nested structure and visual layout of the screen. 
edu.cmu.sun.view Component3D objects that update the scene graph from the models and dispatch mouse events to controllers. 
 

Uses of FileNodeModel in edu.cmu.sun.model
 

Fields in edu.cmu.sun.model declared as FileNodeModel
(package private)  FileNodeModel ListModel.file
           
(package private)  FileNodeModel ItemModel.file
           
(package private)  FileNodeModel FileNodeModel.parent
           
 

Methods in edu.cmu.sun.model that return FileNodeModel
 FileNodeModel ListModel.getFile()
          returns the file that this list is based on.
 FileNodeModel ItemModel.getFile()
          returns the file that this item is based on.
 FileNodeModel FileNodeModel.getParent()
          returns the parent of this node, or null if this node has no parent
 

Methods in edu.cmu.sun.model that return types with arguments of type FileNodeModel
 java.util.List<FileNodeModel> FileNodeModel.getChildren()
          If this node is a folder, it returns a list of visible children to this node.
 

Constructors in edu.cmu.sun.model with parameters of type FileNodeModel
FileNodeModel(java.io.File file, FileNodeModel parent)
           
ItemModel(FileNodeModel file, ListModel parentList)
           
ListModel(FileNodeModel file)
           
WindowModel(FileNodeModel file)
           
 

Uses of FileNodeModel in edu.cmu.sun.view
 

Methods in edu.cmu.sun.view with parameters of type FileNodeModel
private  java.lang.String IconView.getImagePath(FileNodeModel file)
           
 

Constructors in edu.cmu.sun.view with parameters of type FileNodeModel
IconView(FileNodeModel file)