PSE 2000 Group 4

Uses of Interface
jobmatch.business.company.profile.tree.TreeNode

Packages that use TreeNode
jobmatch.business.company.profile   
jobmatch.business.company.profile.tree   
jobmatch.business.company.profile.tree.test   
 

Uses of TreeNode in jobmatch.business.company.profile
 

Subinterfaces of TreeNode in jobmatch.business.company.profile
 interface CVRequest
          Interface for CV Requests
 

Uses of TreeNode in jobmatch.business.company.profile.tree
 

Classes in jobmatch.business.company.profile.tree that implement TreeNode
(package private)  class AbstractNode
          Common behaviour for Nodes
 class ANDNode
          AND - Node
 class LeafSupport
          Leafes can delegate to this object
 class MemoryNode
          Common behaviour for Nodes which life in memory
 class NOTNode
          NOT - Node
(package private)  class OperationNode
          Common behaviour for Operation Nodes
 class ORNode
          OR - Node
(package private)  class RootNode
          Root of the tree
 

Methods in jobmatch.business.company.profile.tree that return TreeNode
 TreeNode TreeNode.getParent()
           
 TreeNode AbstractNode.getParent()
           
 TreeNode MatchTree.getRoot()
           
 

Methods in jobmatch.business.company.profile.tree with parameters of type TreeNode
 void TreeNode.setParent(TreeNode parent)
           
 void TreeNode.and(TreeNode other)
           
 void TreeNode.or(TreeNode other)
           
 void AbstractNode.setParent(TreeNode parent)
           
 void AbstractNode.and(TreeNode other)
           
 void AbstractNode.or(TreeNode other)
           
 void MatchTree.registerNode(TreeNode node)
           
 void MatchTree.setRoot(TreeNode root)
           
 int MatchTree.getLeafNo(TreeNode node)
           
 void OperationNode.addNode(TreeNode node)
           
 

Constructors in jobmatch.business.company.profile.tree with parameters of type TreeNode
AbstractNode.AbstractNode(MatchTree tree, TreeNode parent)
           
MemoryNode.MemoryNode(MatchTree tree, TreeNode parent)
           
LeafSupport.LeafSupport(MatchTree tree, TreeNode parent)
           
OperationNode.OperationNode(MatchTree tree, TreeNode parent)
           
NOTNode.NOTNode(MatchTree tree, TreeNode parent, TreeNode child)
           
ORNode.ORNode(MatchTree tree, TreeNode parent, TreeNode a, TreeNode b)
           
ANDNode.ANDNode(MatchTree tree, TreeNode parent, TreeNode a, TreeNode b)
           
 

Uses of TreeNode in jobmatch.business.company.profile.tree.test
 

Classes in jobmatch.business.company.profile.tree.test that implement TreeNode
 class BooleanNode
          This node gives a constants answer for match(candidate)
 

Methods in jobmatch.business.company.profile.tree.test that return TreeNode
 TreeNode BooleanNode.getParent()
           
 

Methods in jobmatch.business.company.profile.tree.test with parameters of type TreeNode
 void BooleanNode.setParent(TreeNode parent)
           
 void BooleanNode.and(TreeNode other)
           
 void BooleanNode.or(TreeNode other)
           
 

Constructors in jobmatch.business.company.profile.tree.test with parameters of type TreeNode
BooleanNode.BooleanNode(MatchTree tree, TreeNode parent, boolean value)
           
 


PSE 2000 Group 4