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.

Constructor Index

 o ClientBoard()
Construct a client game board.

Method Index

 o asciiDump()
Debugging method
 o makeCell(int, int)
Creates a ClientCell cell for the client game board.

Constructors

 o ClientBoard
  public ClientBoard()
Construct a client game board.

Methods

 o 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
 o asciiDump
  public void asciiDump()
Debugging method

All Packages  Class Hierarchy  This Package  Previous  Next  Index