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

Packages that use ColumnModel
edu.cmu.sun.exe   
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 ColumnModel in edu.cmu.sun.exe
 

Methods in edu.cmu.sun.exe with parameters of type ColumnModel
private  void LaunchDemo.addWindowToColumn(ColumnModel colModel, java.lang.String filePath)
           
 

Uses of ColumnModel in edu.cmu.sun.model
 

Fields in edu.cmu.sun.model declared as ColumnModel
(package private)  ColumnModel WindowModel.columnModel
           
 

Fields in edu.cmu.sun.model with type parameters of type ColumnModel
(package private)  java.util.List<ColumnModel> SceneModel.columns
           
(package private)  java.util.LinkedList<ColumnModel> SceneModel.recentlyUsedColumns
           
 

Methods in edu.cmu.sun.model that return ColumnModel
 ColumnModel WindowModel.getColumnModel()
           
 ColumnModel ColumnModel.getNextColumn()
           
 ColumnModel SceneModel.getNextColumn(ColumnModel afterThisColumn)
           
 ColumnModel ColumnModel.getPrevColumn()
           
 ColumnModel SceneModel.getPrevColumn(ColumnModel beforeThisColumn)
           
 

Methods in edu.cmu.sun.model that return types with arguments of type ColumnModel
 java.util.List<ColumnModel> SceneModel.getColumnModels()
           
 

Methods in edu.cmu.sun.model with parameters of type ColumnModel
 void SceneModel.addColumn(ColumnModel col)
           
 ColumnModel SceneModel.getNextColumn(ColumnModel afterThisColumn)
           
 ColumnModel SceneModel.getPrevColumn(ColumnModel beforeThisColumn)
           
 void SceneModel.makeRecent(ColumnModel col)
           
 void SceneModel.makeUnstacked(ColumnModel col)
           
 void SceneModel.removeColumn(ColumnModel col)
           
 void WindowModel.setColumnModel(ColumnModel columnModel)
           
 

Uses of ColumnModel in edu.cmu.sun.view
 

Fields in edu.cmu.sun.view declared as ColumnModel
(package private)  ColumnModel ColumnView.model
           
 

Methods in edu.cmu.sun.view that return ColumnModel
 ColumnModel ColumnView.getModel()
           
 

Methods in edu.cmu.sun.view with parameters of type ColumnModel
private  ColumnView SceneView.getViewForModel(ColumnModel colModel)
          returns the columnView with the corresponding ColumnModel.
 

Constructors in edu.cmu.sun.view with parameters of type ColumnModel
ColumnView(ColumnModel model, SceneView sceneView)