Uses of Class
model.IllegalCellException

Packages that use IllegalCellException
controller   
model   
model.moves   
 

Uses of IllegalCellException in controller
 

Methods in controller that throw IllegalCellException
 Move Control.createMove(Cell a, Cell b)
          Is responsible for creating a Move based on it's parameters which are the source cell of the Move, and the destination cell of the Move, and finally returning it.
 

Uses of IllegalCellException in model
 

Methods in model that throw IllegalCellException
 Cell ChessBoard.getCell(int x, int y)
          accessor(selector): Retrieves the cell at the given position.
 

Constructors in model that throw IllegalCellException
Cell(int x, int y)
          constructor: Creates a new Cell with the given coordinates.
Cell(int x, int y, java.awt.Color z, Piece r)
          constructor: Creates a new Cell with the given coordinates, the given color, and places a Piece on that Cell.
 

Uses of IllegalCellException in model.moves
 

Constructors in model.moves that throw IllegalCellException
Move(Cell a, Cell b)
          constructor: Creates a Move based on the two given cells.