Class games.Battle.client.ClientApplet.ClientBoard
All Packages Class Hierarchy This Package Previous Next Index
Class games.Battle.client.ClientApplet.ClientBoard
java.lang.Object
|
+----games.Battle.shared.sys.Board
|
+----games.Battle.client.ClientApplet.ClientBoard
- public class ClientBoard
- extends Board
The ClientBoard is the subclass of the Board class which is
responsible for maintaining the client version of the game
board. Its fundamental purpose is to create the appropriate
ClientCell in its makeCell method.
-
ClientBoard()
- Construct a client game board.
-
asciiDump()
- Debugging method
-
makeCell(int, int)
- Creates a ClientCell cell for the client game board.
ClientBoard
public ClientBoard()
- Construct a client game board.
makeCell
public Cell makeCell(int r,
int c)
- Creates a ClientCell cell for the client game board.
- Parameters:
- r - the row the cell is being created for
- c - the column the cell is being created for
- Overrides:
- makeCell in class Board
- See Also:
- ClientCell
asciiDump
public void asciiDump()
- Debugging method
All Packages Class Hierarchy This Package Previous Next Index