dataStructures
Class SortedChain.SortedChainNode

java.lang.Object
  |
  +--dataStructures.SortedChain.SortedChainNode

protected static class SortedChain.SortedChainNode
extends java.lang.Object


Field Summary
protected  java.lang.Object element
           
protected  java.lang.Comparable key
           
protected  SortedChain.SortedChainNode next
           
 
Constructor Summary
protected SortedChain.SortedChainNode()
           
protected SortedChain.SortedChainNode(java.lang.Object theKey, java.lang.Object theElement)
           
protected SortedChain.SortedChainNode(java.lang.Object theKey, java.lang.Object theElement, SortedChain.SortedChainNode theNext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

key

protected java.lang.Comparable key

element

protected java.lang.Object element

next

protected SortedChain.SortedChainNode next
Constructor Detail

SortedChain.SortedChainNode

protected SortedChain.SortedChainNode()

SortedChain.SortedChainNode

protected SortedChain.SortedChainNode(java.lang.Object theKey,
                                      java.lang.Object theElement)

SortedChain.SortedChainNode

protected SortedChain.SortedChainNode(java.lang.Object theKey,
                                      java.lang.Object theElement,
                                      SortedChain.SortedChainNode theNext)