All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class scrobble.square.ClientTripleWordSquare

java.lang.Object
   |
   +----scrobble.square.Square
           |
           +----scrobble.square.TripleWordSquare
                   |
                   +----scrobble.square.ClientTripleWordSquare

public class ClientTripleWordSquare
extends TripleWordSquare
The ClientTripleWordSquare class is a client version of the TripleWordSquare class. It implements the methods of interface Displayable to display the "Word counts triple" square.


Constructor Index

 o ClientTripleWordSquare()

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().
 o drawSquare()
Displays the square "word counts triple"

Constructors

 o ClientTripleWordSquare
 public ClientTripleWordSquare()

Methods

 o drawSquare
 public void drawSquare()
Displays the square "word counts triple"

 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