Uses of Class
ucot.ui.gui.tree.analyzemodeltree.TreeItem

Packages that use TreeItem
ucot.ui.gui.tree.analyzemodeltree Classes related to a tree that displays analyzemodel in a tree. 
 

Uses of TreeItem in ucot.ui.gui.tree.analyzemodeltree
 

Subclasses of TreeItem in ucot.ui.gui.tree.analyzemodeltree
 class AbstractEntityTreeItem
          This class represents all TreeItems in the AnalyzeModelTrre.
 class AttributeTreeItem
           This class represents entity object that resides as an attribute in the analyze model tree.
 class ChildTreeItem
           Represents child entity in analyze model tree.
 class EntitiesTreeItem
           This represents the entities TreeItem that contains all the entities of the analyze model.
 class EntityTreeItem
           This class represents entity tree item.
 class MethodTreeItem
           This class represents method TreeItem.
 

Fields in ucot.ui.gui.tree.analyzemodeltree declared as TreeItem
private  TreeItem TreeItem.parent
          The parent TreeItem of this node.
(package private)  TreeItem AnalyzeTreeModel.root
           
 

Methods in ucot.ui.gui.tree.analyzemodeltree that return TreeItem
 TreeItem TreeItem.getParent()
          Returns the parent item of this item.
 

Methods in ucot.ui.gui.tree.analyzemodeltree that return types with arguments of type TreeItem
 java.util.List<TreeItem> TreeItem.getChildren()
          Returns the child items of this item.
 java.util.List<TreeItem> AbstractEntityTreeItem.getChildren()
           
 java.util.List<TreeItem> TreeItem.getPath()
           Returns the path to this item inside the tree.
 

Constructors in ucot.ui.gui.tree.analyzemodeltree with parameters of type TreeItem
AbstractEntityTreeItem(java.lang.String name, AnalyzeTreeModel model, TreeItem parent)
          Constructor for the class.
AttributeTreeItem(java.lang.String name, AnalyzeTreeModel model, TreeItem parent)
          Constructs the object.
ChildTreeItem(java.lang.String name, AnalyzeTreeModel model, TreeItem parent)
          Constucts the object.
EntitiesTreeItem(AnalyzeTreeModel model, TreeItem parent)
           Constructs the object.
EntityTreeItem(java.lang.String name, AnalyzeTreeModel model, TreeItem parent)
           Constructs the object.
EntityTreeItem(java.lang.String name, AnalyzeTreeModel model, TreeItem parent, boolean expand)
           Constructs the object.
MethodTreeItem(java.lang.String entity, java.lang.String method, AnalyzeTreeModel model, TreeItem parent)
           Costructs the object.
TreeItem(java.lang.String name, AnalyzeTreeModel model, TreeItem parent)
           Constructs the object.