| java.lang.Object com.nabhinc.util.QElement
QElement | public class QElement implements java.io.Serializable(Code) | | An element in the Queue. Essentially a linked list.
Helper class used by Queue
author: Padmanabh Dabke author: (c) 2003 Nabh Information Systems, Inc. All Rights Reserved. |
index | public int index(Code) | | Element index
|
QElement | public QElement(int ind, java.io.Serializable o)(Code) | | Constructs a QueueElement whose value is the given object
Parameters: o - Object that will be potentially added to a Queue |
addObject | public QElement addObject(int index, java.io.Serializable o)(Code) | | Adds an object as the next element in the queue.
Parameters: o - Object to added to the queue. |
|
|