org.cdlib.xtf.lazyTree
Interface SearchNode

All Known Subinterfaces:
SearchElement
All Known Implementing Classes:
ProxyElement, SearchElementImpl, SearchTextImpl

public interface SearchNode

Basic interface shared by SearchElement and ProxyElement, which is useful for code that can create either one without having to know their internal structure.

Author:
Martin Haye

Method Summary
 void setNextSibNum(int num)
          Establish the next sibling node number
 void setNodeNum(int nodeNum)
          Establish the node's number
 void setParentNum(int parentNum)
          Establish the parent node
 void setPrevSibNum(int num)
          Establish the previous sibling node number
 

Method Detail

setNodeNum

void setNodeNum(int nodeNum)
Establish the node's number


setParentNum

void setParentNum(int parentNum)
Establish the parent node


setNextSibNum

void setNextSibNum(int num)
Establish the next sibling node number


setPrevSibNum

void setPrevSibNum(int num)
Establish the previous sibling node number