moka.util
Class Entry

java.lang.Object
  |
  +--moka.lang.Object
        |
        +--moka.util.Entry

public class Entry
extends Object

Class Entry represents a LinkedList entry.

Since:
MDK1.0a

Field Summary
protected  moka.lang.Object element
          The object linked to this entry.
protected  moka.util.Entry next
          The next entry in the LinkedList.
protected  moka.util.Entry previous
          The previous entry in the LinkedList.
 
Constructor Summary
Entry(moka.lang.Object element, moka.util.Entry previous, moka.util.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 moka.lang.Object element
The object linked to this entry.


previous

protected moka.util.Entry previous
The previous entry in the LinkedList.


next

protected moka.util.Entry next
The next entry in the LinkedList.

Constructor Detail

Entry

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

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