All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class collections.Cell

java.lang.Object
   |
   +----collections.Cell

public class Cell
extends Object
implements Cloneable, Serializable
Cell is the base of a bunch of implementation classes for lists and the like. The base version just holds an Object as its element value


Constructor Index

 o Cell()
Make A cell with null element value
 o Cell(Object)
Make a cell with element value v

Method Index

 o clone()
 o element()
return the element value
 o element(Object)
set the element value

Constructors

 o Cell
 public Cell(Object v)
Make a cell with element value v

 o Cell
 public Cell()
Make A cell with null element value

Methods

 o element
 public final Object element()
return the element value

 o element
 public final void element(Object v)
set the element value

 o clone
 protected Object clone() throws CloneNotSupportedException
Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index