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
-
Cell()
- Make A cell with null element value
-
Cell(Object)
- Make a cell with element value v
-
clone()
-
-
element()
- return the element value
-
element(Object)
- set the element value
Cell
public Cell(Object v)
- Make a cell with element value v
Cell
public Cell()
- Make A cell with null element value
element
public final Object element()
- return the element value
element
public final void element(Object v)
- set the element value
clone
protected Object clone() throws CloneNotSupportedException
- Overrides:
- clone in class Object
All Packages Class Hierarchy This Package Previous Next Index