All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----scrobble.square.Square | +----scrobble.square.TripleWordSquare | +----scrobble.square.ClientTripleWordSquare
ClientTripleWordSquare
class is a client version of the
TripleWordSquare class. It implements the methods of interface
Displayable
to display the "Word counts triple" square.
-
ClientTripleWordSquare()
-
-
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()
.
-
drawSquare()
- Displays the square "word counts triple"
ClientTripleWordSquare
public ClientTripleWordSquare()
drawSquare
public void drawSquare()
- Displays the square "word counts triple"
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