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

Packages that use TreeItem
ucot.ui.gui.tree.usecasetree   
 

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

Subclasses of TreeItem in ucot.ui.gui.tree.usecasetree
 class FilesTreeItem
          Root-node for UseCaseTree.
 class FileTreeItem
          TreeItem to hold data of file containing usecases
 class UseCaseTreeItem
          TreeItem to contain usecase.
 

Fields in ucot.ui.gui.tree.usecasetree declared as TreeItem
(package private)  TreeItem TreeItem.parent
           
private  TreeItem UseCaseTreeModel.root
           
 

Methods in ucot.ui.gui.tree.usecasetree that return types with arguments of type TreeItem
 java.util.List<TreeItem> TreeItem.getChildren()
          Return children of this TreeItem in a List.
 java.util.List<TreeItem> FileTreeItem.getChildren()
           
 java.util.List<TreeItem> TreeItem.getPath()
          Returns path to this item as a List of TreeItems.
 

Methods in ucot.ui.gui.tree.usecasetree with parameters of type TreeItem
private  javax.swing.JPopupMenu UseCaseTree.getPopupMenuFor(TreeItem treeitem)
          Creates and returns JPopupMenu for given TreeItem.
private  java.util.Vector<UseCase> UseCaseTree.getSubtreeInVector(TreeItem item)
          Method to add UseCases from subtree of this TreeItem into vector.
 

Constructors in ucot.ui.gui.tree.usecasetree with parameters of type TreeItem
FilesTreeItem(UseCaseTreeModel treemodel, TreeItem parent)
          default constructor for FilesTreeItem.
FileTreeItem(UseCaseTreeModel treemodel, TreeItem parent, java.net.URL url)
          Default constructor for FileTreeItem.
TreeItem(UseCaseTreeModel treemodel, TreeItem parent)
          Constructor for TreeItem.
UseCaseTreeItem(UseCaseTreeModel treemodel, TreeItem parent, UseCase usecase)
          Default constructor for UseCaseTreeItem.