|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectweka.core.Queue.QueueNode
Represents one node in the queue.
Field Summary | |
protected java.lang.Object |
m_Contents
The nodes contents |
protected Queue.QueueNode |
m_Next
The next node in the queue |
Constructor Summary | |
Queue.QueueNode(java.lang.Object contents)
Creates a queue node with the given contents |
Method Summary | |
java.lang.Object |
contents()
Returns the contents in the node. |
java.lang.Object |
contents(java.lang.Object contents)
Sets the contents of the node. |
Queue.QueueNode |
next()
Gets the next node in the queue. |
Queue.QueueNode |
next(Queue.QueueNode next)
Sets the next node in the queue, and returns it. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected Queue.QueueNode m_Next
protected java.lang.Object m_Contents
Constructor Detail |
public Queue.QueueNode(java.lang.Object contents)
Method Detail |
public Queue.QueueNode next(Queue.QueueNode next)
public Queue.QueueNode next()
public java.lang.Object contents(java.lang.Object contents)
public java.lang.Object contents()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |