Class BooleanGrid

java.lang.Object
  |
  +--BooleanGrid

public class BooleanGrid
extends java.lang.Object

in alpha testing


Constructor Summary
BooleanGrid(BooleanGrid old)
          in alpha testing
BooleanGrid(int nRows, int nCols, boolean startValue)
          in alpha testing
 
Method Summary
 void clone(BooleanGrid old)
          in alpha testing
 boolean getBoolean(int row, int col)
          in alpha testing
 int getColumns()
          in alpha testing
 int getRows()
          in alpha testing
 void reverse()
          in alpha testing
 void setAll(boolean value)
          in alpha testing
 void setBoolean(int row, int col, boolean value)
          in alpha testing
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BooleanGrid

public BooleanGrid(int nRows,
                   int nCols,
                   boolean startValue)
in alpha testing

BooleanGrid

public BooleanGrid(BooleanGrid old)
in alpha testing
Method Detail

setAll

public void setAll(boolean value)
in alpha testing

clone

public void clone(BooleanGrid old)
in alpha testing

reverse

public void reverse()
in alpha testing

setBoolean

public void setBoolean(int row,
                       int col,
                       boolean value)
in alpha testing

getBoolean

public boolean getBoolean(int row,
                          int col)
in alpha testing

getRows

public int getRows()
in alpha testing

getColumns

public int getColumns()
in alpha testing