All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----scrobble.square.Square | +----scrobble.square.BonusSquare | +----scrobble.square.ServerBonusSquare
ServerBonusSquare
class is a server version of the
BonusSquare class. It implements the methods of interface
CountingSquare
to calculate the word scoring.
-
ServerBonusSquare()
- Creates a new ServerBonusSquare
-
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.
ServerBonusSquare
public ServerBonusSquare()
- Creates a new ServerBonusSquare
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