moka.util
Class Entry

java.lang.Object
  extended bymoka.lang.Object
      extended bymoka.util.Entry

public class Entry
extends Object

Class Entry represents a LinkedList entry.

Since:
MDK1.0a

Field Summary
protected  Object element
          The object linked to this entry.
protected  Entry next
          The next entry in the LinkedList.
protected  Entry previous
          The previous entry in the LinkedList.
 
Constructor Summary
Entry(Object element, Entry previous, Entry next)
          Creates a new Entry for the specified element.
 
Methods inherited from class moka.lang.Object
equals, finalize, getClassName, toString
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

element

protected Object element
The object linked to this entry.


previous

protected Entry previous
The previous entry in the LinkedList.


next

protected Entry next
The next entry in the LinkedList.

Constructor Detail

Entry

public Entry(Object element,
             Entry previous,
             Entry next)
Creates a new Entry for the specified element.

Parameters:
element - The specified element
previous - The previous entry
next - The next entry