SolarMetric Kodo JDO 2.5.8 generated on January 11 2004

serp.util
Class SimpleLinkedList.Entry

java.lang.Object
  |
  +--serp.util.SimpleLinkedList.Entry
Enclosing class:
SimpleLinkedList

public static class SimpleLinkedList.Entry
extends Object

Doubly linked list element building block.


Field Summary
protected  SimpleLinkedList.Entry next
          The next element in the linked list.
protected  SimpleLinkedList.Entry prev
          The previous element in the linked list.
protected  Object value
          The data at this position in the linked list.
 
Constructor Summary
SimpleLinkedList.Entry(Object val)
          Create a new Entry object for val.
 
Method Summary
 SimpleLinkedList.Entry getNext()
           
 SimpleLinkedList.Entry getPrev()
           
 Object getValue()
           
protected  void setNext(SimpleLinkedList.Entry val)
           
protected  void setPrev(SimpleLinkedList.Entry val)
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

protected Object value
The data at this position in the linked list.

next

protected SimpleLinkedList.Entry next
The next element in the linked list. null if this is the last element in the linked list.

prev

protected SimpleLinkedList.Entry prev
The previous element in the linked list. null if this is the first element in the linked list.
Constructor Detail

SimpleLinkedList.Entry

public SimpleLinkedList.Entry(Object val)
Create a new Entry object for val.
Method Detail

getValue

public Object getValue()

setNext

protected void setNext(SimpleLinkedList.Entry val)

getNext

public SimpleLinkedList.Entry getNext()

setPrev

protected void setPrev(SimpleLinkedList.Entry val)

getPrev

public SimpleLinkedList.Entry getPrev()

SolarMetric Kodo JDO 2.5.8 generated on January 11 2004

Copyright 2001,2002,2003 SolarMetric, Inc. All Rights Reserved.