All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----scrobble.square.Square | +----scrobble.square.TripleWordSquare | +----scrobble.square.ServerTripleWordSquare
ServerTripleWordSquare
class is a server version of the
TripleWordSquare class. It implements the methods of interface
CountingSquare
to calculate the word scoring.
-
ServerTripleWordSquare()
- Creates a new ServerTripleWordSquare
-
letterAction(Letter)
- this methods is called when we calculate the score of a word.
-
main(String[])
-
-
wordAction(Word)
- This method is called when we calculate the score of the word.
ServerTripleWordSquare
public ServerTripleWordSquare()
- Creates a new ServerTripleWordSquare
letterAction
public int letterAction(Letter letter)
- this methods is called when we calculate the score of a word.
- Parameters:
- letter - the letter on which the Square acts
- Returns:
- the value of letter on this square
wordAction
public int wordAction(Word word)
- This method is called when we calculate the score of the word.
- Parameters:
- word - the word on which the Square acts
- Returns:
- the value of word on this square
main
public static void main(String args[])
All Packages Class Hierarchy This Package Previous Next Index