Class SLQueue.Cell

java.lang.Object
  |
  +--SLQueue.Cell
Enclosing class:
SLQueue

class SLQueue.Cell
extends java.lang.Object

A Cell stores one Object in the Queue and points to the next newer Object if any.


Field Summary
(package private)  java.lang.Object First
          the data in this Cell
(package private)  SLQueue.Cell Rest
          the next Cell in the Queue
 
Constructor Summary
(package private) SLQueue.Cell(java.lang.Object _First, SLQueue.Cell _Rest)
          construct a Cell
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

First

java.lang.Object First
the data in this Cell


Rest

SLQueue.Cell Rest
the next Cell in the Queue

Constructor Detail

SLQueue.Cell

SLQueue.Cell(java.lang.Object _First,
             SLQueue.Cell _Rest)
construct a Cell

Parameters:
_First - the Object in this Cell
_Rest - the rest of the Queue after this Cell