All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class scrobble.square.ClientBonusSquare

java.lang.Object
   |
   +----scrobble.square.Square
           |
           +----scrobble.square.BonusSquare
                   |
                   +----scrobble.square.ClientBonusSquare

public class ClientBonusSquare
extends BonusSquare
The ClientBonusSquare class is a client version of the BonusSquare class. It implements the methods of interface Displayable to display the bonus square.


Constructor Index

 o ClientBonusSquare()

Method Index

 o display()
Draws the whole object in the specified area.
 o displayUpdate()
Draws a partial reprentation of the object in the specified area, that is, only parts that changed since last call to display() or displayUpdate().

Constructors

 o ClientBonusSquare
 public ClientBonusSquare()

Methods

 o display
 public void display()
Draws the whole object in the specified area. This method is called when the object has to be completly redrawn (eg first display of the object). If the object only needs to be partially drawn, then it should call method displayUpdate().
[CHECK PARAMETERS]

See Also:
displayUpdate
 o displayUpdate
 public void displayUpdate()
Draws a partial reprentation of the object in the specified area, that is, only parts that changed since last call to display() or displayUpdate(). Object needing to be fully redrawn should call method display().
[CHECK PARAMETERS]

See Also:
display

All Packages  Class Hierarchy  This Package  Previous  Next  Index