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

Packages that use ItemModel
edu.cmu.sun.controller The controller package is responsible for handling user actions. 
edu.cmu.sun.folds Handles all of the logic level work for the folded scrolling interaction. 
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 ItemModel in edu.cmu.sun.controller
 

Fields in edu.cmu.sun.controller declared as ItemModel
(package private)  ItemModel ItemController.model
           
 

Constructors in edu.cmu.sun.controller with parameters of type ItemModel
ItemController(ItemModel model)
           
 

Uses of ItemModel in edu.cmu.sun.folds
 

Methods in edu.cmu.sun.folds that return types with arguments of type ItemModel
 java.util.List<ItemModel> LayoutComponent.getIncludedItemModels()
          Since this component only represents a portion of the items in a model, sometimes we will want to have acess to just the list Items that this component is responsible for.
 

Uses of ItemModel in edu.cmu.sun.model
 

Fields in edu.cmu.sun.model declared as ItemModel
(package private)  ItemModel WindowModel.parentItemModel
           
 

Fields in edu.cmu.sun.model with type parameters of type ItemModel
(package private)  java.util.List<ItemModel> ListModel.items
           
 

Methods in edu.cmu.sun.model that return ItemModel
 ItemModel WindowModel.getParentItemModel()
           
 

Methods in edu.cmu.sun.model that return types with arguments of type ItemModel
 java.util.List<ItemModel> ListModel.getItems()
           
 java.util.List<ItemModel> ListModel.getItemsWithin(IndexRange range)
          Builds a list from the internal Items
 

Methods in edu.cmu.sun.model with parameters of type ItemModel
 boolean ListModel.containsItem(ItemModel parentItemModel)
           
 void WindowModel.setParentItemModel(ItemModel parentItemModel)
           
 

Constructors in edu.cmu.sun.model with parameters of type ItemModel
WindowModel(ItemModel item)
           
 

Uses of ItemModel in edu.cmu.sun.view
 

Fields in edu.cmu.sun.view declared as ItemModel
(package private)  ItemModel ItemView.model
           
(package private)  ItemModel GlueView.model
           
 

Methods in edu.cmu.sun.view that return ItemModel
 ItemModel ItemView.getModel()
           
 

Methods in edu.cmu.sun.view that return types with arguments of type ItemModel
 java.util.List<ItemModel> ListView.getActiveListItemModels()
           
 

Methods in edu.cmu.sun.view with parameters of type ItemModel
private  void ColumnGlueView.createGlueView(WindowView windowView, ItemView itemView, ItemModel itemModel)
           
 ItemView WindowView.getItemViewMatchingModel(ItemModel itemModel)
           
 ItemView WindowContentView.getItemViewMatchingModel(ItemModel itemModel)
           
 ItemView ListView.getItemViewMatchingModel(ItemModel itemModel)
           
 ItemView ColumnView.getItemViewMatchingModel(ItemModel itemModel)
           
protected  java.lang.String AbstractFoldView.makeAbreviation(ItemModel lim)
           
 

Constructors in edu.cmu.sun.view with parameters of type ItemModel
GlueView(ItemModel model)
           
ItemView(ItemModel model)