Class Queue.QueueNode
- java.lang.Object
-
- org.processmining.plugins.workshop.Yaguang.WekaDiscriminationTree.Queue.QueueNode
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- Queue
protected class Queue.QueueNode extends java.lang.Object implements java.io.SerializableRepresents one node in the queue.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Objectm_ContentsThe nodes contentsprotected Queue.QueueNodem_NextThe next node in the queue
-
Constructor Summary
Constructors Constructor Description QueueNode(java.lang.Object contents)Creates a queue node with the given contents
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectcontents()Returns the contents in the node.java.lang.Objectcontents(java.lang.Object contents)Sets the contents of the node.Queue.QueueNodenext()Gets the next node in the queue.Queue.QueueNodenext(Queue.QueueNode next)Sets the next node in the queue, and returns it.
-
-
-
Field Detail
-
m_Next
protected Queue.QueueNode m_Next
The next node in the queue
-
m_Contents
protected java.lang.Object m_Contents
The nodes contents
-
-
Method Detail
-
next
public Queue.QueueNode next(Queue.QueueNode next)
Sets the next node in the queue, and returns it.
-
next
public Queue.QueueNode next()
Gets the next node in the queue.
-
contents
public java.lang.Object contents(java.lang.Object contents)
Sets the contents of the node.
-
contents
public java.lang.Object contents()
Returns the contents in the node.
-
-