Uses of Class
org.problets.lib.conceptmap.model.NodeModel

Packages that use NodeModel
org.problets.lib.conceptmap.model   
org.problets.lib.conceptmap.model.userbuilt   
org.problets.lib.conceptmap.view   
org.problets.lib.conceptmap.view.collapsible   
org.problets.lib.conceptmap.view.navigable   
 

Uses of NodeModel in org.problets.lib.conceptmap.model
 

Methods in org.problets.lib.conceptmap.model that return NodeModel
 NodeModel NodeModel.getChild(int index)
          Returns the child at the specified position in this node's vector of children.
 NodeModel NodeModel.getParent()
          Returns this node's parent.
 NodeModel TreeModel.getRoot()
          Returns the root of the tree model.
 NodeModel LinkModel.getSource()
          Returns the source node for this link.
 NodeModel LinkModel.getTarget()
          Returns the target node for this link.
 

Methods in org.problets.lib.conceptmap.model with parameters of type NodeModel
 void NodeModel.addNode(NodeModel nodeModel)
          Adds the specified node as a child node.
 void NodeModel.setParent(NodeModel inParent)
          Sets the node model passed as argument as this node's parent.
 

Constructors in org.problets.lib.conceptmap.model with parameters of type NodeModel
LinkModel(NodeModel inSource, NodeModel inTarget)
          Creates a LinkModel object using the originating and destination nodes as arguments.
NodeModel(NodeModel inParent, java.util.Vector contents)
          Creates a node model using the parent node and the data for the rest of the tree passed in a vector of strings as arguments.
 

Uses of NodeModel in org.problets.lib.conceptmap.model.userbuilt
 

Subclasses of NodeModel in org.problets.lib.conceptmap.model.userbuilt
 class UserBuiltNodeModel
          Derived from NodeModel.
 

Uses of NodeModel in org.problets.lib.conceptmap.view
 

Methods in org.problets.lib.conceptmap.view that return NodeModel
 NodeModel NodeView.getNodeModel()
          Returns the node model which this view represents.
 

Constructors in org.problets.lib.conceptmap.view with parameters of type NodeModel
NodeView(NodeView inParent, NodeModel inNodeModel)
          Creates a NodeView object using the parent node view and the node model as arguments.
 

Uses of NodeModel in org.problets.lib.conceptmap.view.collapsible
 

Constructors in org.problets.lib.conceptmap.view.collapsible with parameters of type NodeModel
CollapsibleNodeView(NodeView parent, NodeModel nodeModel)
          Creates a CollapsibleNodeView object using the parent node view and the corresponding model as arguments.
 

Uses of NodeModel in org.problets.lib.conceptmap.view.navigable
 

Constructors in org.problets.lib.conceptmap.view.navigable with parameters of type NodeModel
NavigableNodeView(NodeView parent, NodeModel nodeModel)
          Creates a NavigableNodeView object using the parent node view and the corresponding model as arguments.