moka.util
Class SerialEntry

java.lang.Object
  |
  +--moka.lang.Object
        |
        +--moka.io.Serializable
              |
              +--moka.util.SerialEntry

public class SerialEntry
extends Serializable

Class SerialEntry represents a SerialList entry.

Since:
MDK1.0a

Field Summary
protected  moka.io.Serializable element
          The object linked to this entry.
protected  moka.util.SerialEntry next
          The next entry in the LinkedList.
 
Constructor Summary
SerialEntry(moka.io.Serializable element, moka.util.SerialEntry next)
          Creates a new SerialEntry for the specified element.
 
Methods inherited from class moka.io.Serializable
deserialize, serialize
 
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.io.Serializable element
The object linked to this entry.


next

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

Constructor Detail

SerialEntry

public SerialEntry(moka.io.Serializable element,
                   moka.util.SerialEntry next)
Creates a new SerialEntry for the specified element.

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