All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----scrobble.square.Square | +----scrobble.square.BonusSquare | +----scrobble.square.ClientBonusSquare
ClientBonusSquare
class is a client version of the
BonusSquare class. It implements the methods of interface
Displayable
to display the bonus square.
-
ClientBonusSquare()
-
-
display()
- Draws the whole object in the specified area.
-
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()
.
ClientBonusSquare
public ClientBonusSquare()
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
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()
.
All Packages Class Hierarchy This Package Previous Next Index