| Package | Description |
|---|---|
| com.putable.client.gui |
Provides the classes necessary to construct the client's GUI
|
| com.putable.common.matrix |
Provides the classes necessary to construct a Matrix object
|
| Modifier and Type | Field and Description |
|---|---|
private Cell |
Gui.CellListener.cell |
| Constructor and Description |
|---|
CellListener(Cell cell)
The constructor for a new CellListener, just needs a Cell to listen
to.
|
| Modifier and Type | Field and Description |
|---|---|
private Cell[][] |
AbstractMatrix.grid
The two dimensional grid of Cells contained in this Matrix
|
| Modifier and Type | Method and Description |
|---|---|
Cell[][] |
Matrix.getGrid()
A method used for testing that returns a reference to the 2-dimensional
cell array or grid.
|
Cell[][] |
AbstractMatrix.getGrid() |
Cell |
Matrix.getGridCell(int i,
int j)
This method returns a particular Cell in the grid from the specified
coordinates.
|
Cell |
AbstractMatrix.getGridCell(int i,
int j) |
| Modifier and Type | Method and Description |
|---|---|
void |
Matrix.setGrid(Cell[][] newGrid)
A method used for testing that forces the grid to be the one that is
given as a parameter.
|
void |
AbstractMatrix.setGrid(Cell[][] newGrid) |
void |
Matrix.setGridCell(int i,
int j,
Cell cell)
A method used for testing that simply lets you set a Cell in the grid.
|
void |
AbstractMatrix.setGridCell(int i,
int j,
Cell cell) |