Class DLDeque.Dcell

java.lang.Object
  |
  +--DLDeque.Dcell
Enclosing class:
DLDeque

class DLDeque.Dcell
extends java.lang.Object

A Dcell stores one Object in the Queue and points to the immediately following and preceding Dcells, if any.


Field Summary
(package private)  java.lang.Object Data
          the data in this Dcell
(package private)  DLDeque.Dcell Next
          reference to the next Dcell in the sequence
(package private)  DLDeque.Dcell Previous
          reference to the previous Dcell in the sequence
 
Constructor Summary
(package private) DLDeque.Dcell(java.lang.Object _Data, DLDeque.Dcell _Next, DLDeque.Dcell _Previous)
          construct a Dcell referencing the next and previous Dcell and containing specified data
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Data

java.lang.Object Data
the data in this Dcell


Next

DLDeque.Dcell Next
reference to the next Dcell in the sequence


Previous

DLDeque.Dcell Previous
reference to the previous Dcell in the sequence

Constructor Detail

DLDeque.Dcell

DLDeque.Dcell(java.lang.Object _Data,
              DLDeque.Dcell _Next,
              DLDeque.Dcell _Previous)
construct a Dcell referencing the next and previous Dcell and containing specified data

Parameters:
_Data - the data in this Dcell
_Next - the next Dcell in the sequence
_Previous - the previous Dcell in the sequence