Uses of Interface
hok.model.ITreeNode

Packages that use ITreeNode
hok.model   
hok.ui.wizard   
 

Uses of ITreeNode in hok.model
 

Classes in hok.model that implement ITreeNode
 class ATreeModel
          The ATreeModel is the model for the TreeViewer of the ConstraintDialog.
 class TreeElement
          The TreeElement is a JavaBean representing an owl individual or owl object property.
 

Methods in hok.model that return ITreeNode
 ITreeNode TreeFactory.generateConceptTree(java.lang.String rootConcept)
          Generates the concept tree of the owl model starting with the given root concept.
 ITreeNode TreeFactory.generatePredicateTree(java.lang.String rootPredicate)
          Generates the predicate tree of the owl model starting with the given root predicate.
 ITreeNode ModelMediator.getConceptTree()
          Returns the concept tree.
 ITreeNode ITreeNode.getParent()
          Returns the parent of the current element.
 ITreeNode ATreeModel.getParent()
           
 ITreeNode ModelMediator.getPredicateTree()
          Returns the predicate tree.
 

Methods in hok.model that return types with arguments of type ITreeNode
 java.util.Set<ITreeNode> ITreeNode.getChildren(ITreeNode parentElement)
          Returns the children of a parent element.
 java.util.Set<ITreeNode> ATreeModel.getChildren(ITreeNode parentElement)
           
 

Methods in hok.model with parameters of type ITreeNode
 void ITreeNode.addChild(ITreeNode child)
          Adds a child to the tree model.
 void ATreeModel.addChild(ITreeNode child)
           
 void ITreeListeners.addListener(ITreeNode element)
          Adds a listener to the model.
 void ATreeModel.addListener(ITreeNode element)
           
 java.util.Set<ITreeNode> ITreeNode.getChildren(ITreeNode parentElement)
          Returns the children of a parent element.
 java.util.Set<ITreeNode> ATreeModel.getChildren(ITreeNode parentElement)
           
 void ITreeNode.removeChild(ITreeNode child)
          Removes a child from the model.
 void ATreeModel.removeChild(ITreeNode child)
           
 void ITreeListeners.removeListener(ITreeNode element)
          Removes a listener from the model.
 void ATreeModel.removeListener(ITreeNode element)
           
 

Constructors in hok.model with parameters of type ITreeNode
ATreeModel(ITreeNode parent)
          The Constructor.
TreeElement(ITreeNode parent)
          Constructor.
 

Uses of ITreeNode in hok.ui.wizard
 

Methods in hok.ui.wizard that return ITreeNode
 ITreeNode ConstraintDialog.getSelectedElement()
          Returns the element that is selected by the user.
 ITreeNode ConstraintDialog.getTreeModel()
          Returns the tree model.
 

Methods in hok.ui.wizard with parameters of type ITreeNode
 void ConstraintDialog.setTreeModel(ITreeNode treeNode)
          Sets the tree model.