gzz.impl
Interface CellManager

All Known Implementing Classes:
AbstractCellManager

public interface CellManager

The cells of a single ZZ space.


Field Summary
static java.lang.String rcsid
           
 
Method Summary
 void delete(Cell c)
          Delete a given cell.
 boolean exists(java.lang.String id)
          Whether a cell with the given ID exists in this space.
 Cell getCell(java.lang.String id)
          Get a cell by its ID.
 Cell N(Cell inSlice)
          Create a new cell in the same slice as the given cell.
 void setSpace(Space s)
           
 

Field Detail

rcsid

public static final java.lang.String rcsid
See Also:
Constant Field Values
Method Detail

setSpace

public void setSpace(Space s)

getCell

public Cell getCell(java.lang.String id)
Get a cell by its ID.


N

public Cell N(Cell inSlice)
Create a new cell in the same slice as the given cell.


delete

public void delete(Cell c)
Delete a given cell.


exists

public boolean exists(java.lang.String id)
Whether a cell with the given ID exists in this space.