PSE 2000 Group 4

jobmatch.business.company.profile.tree
Interface TreeNode

All Known Subinterfaces:
CVRequest
All Known Implementing Classes:
AbstractNode

public interface TreeNode
extends Serializable

Interface for tree nodes

Since:
May 14 2000
Version:
$Revision: 1.3 $

Method Summary
 void and(TreeNode other)
           
 String getDescription()
           
 int getLeafNo()
           
 TreeNode getParent()
           
 MatchTree getTree()
           
 boolean match(Candidate candidate)
           
 void not()
           
 int numChildren()
           
 void or(TreeNode other)
           
 void setLeafNo(int number)
           
 void setParent(TreeNode parent)
           
 void setTree(MatchTree tree)
           
 

Method Detail

numChildren

public int numChildren()

getDescription

public String getDescription()

getParent

public TreeNode getParent()

setParent

public void setParent(TreeNode parent)

getTree

public MatchTree getTree()

setTree

public void setTree(MatchTree tree)

getLeafNo

public int getLeafNo()

setLeafNo

public void setLeafNo(int number)

and

public void and(TreeNode other)

or

public void or(TreeNode other)

not

public void not()

match

public boolean match(Candidate candidate)

PSE 2000 Group 4