PSE 2000 Group 4

jobmatch.business.company.profile.tree
Class RootNode

java.lang.Object
  |
  +--jobmatch.business.company.profile.tree.AbstractNode
        |
        +--jobmatch.business.company.profile.tree.MemoryNode
              |
              +--jobmatch.business.company.profile.tree.RootNode

class RootNode
extends MemoryNode

Root of the tree

Since:
May 31 2000
Version:
$Revision: 1.1 $
See Also:
Serialized Form

Constructor Summary
(package private) RootNode(MatchTree tree)
           
 
Method Summary
 Object clone()
           
 boolean equals(Object other)
           
 String getDescription()
           
 boolean match(Candidate candidate)
           
 int numChildren()
           
protected  boolean semanticEquality(RootNode a, RootNode b)
           
 String toString()
           
 
Methods inherited from class jobmatch.business.company.profile.tree.MemoryNode
getLeafNo, setLeafNo
 
Methods inherited from class jobmatch.business.company.profile.tree.AbstractNode
and, getParent, getTree, not, or, semanticEquality, setParent, setTree
 
Methods inherited from class java.lang.Object
, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RootNode

RootNode(MatchTree tree)
Method Detail

getDescription

public String getDescription()
Overrides:
getDescription in class AbstractNode

numChildren

public int numChildren()

match

public boolean match(Candidate candidate)

equals

public boolean equals(Object other)
Overrides:
equals in class AbstractNode
See Also:
Object.equals

semanticEquality

protected boolean semanticEquality(RootNode a,
                                   RootNode b)
Returns:
true if a is considered the same as b

toString

public String toString()
Overrides:
toString in class AbstractNode
See Also:
Object.toString

clone

public Object clone()
Overrides:
clone in class AbstractNode
See Also:
Object.clone

PSE 2000 Group 4