net.bluebones.boggle
Class WordFinder

java.lang.Object
  extended by net.bluebones.boggle.WordFinder
All Implemented Interfaces:
Runnable

public class WordFinder
extends Object
implements Runnable

Finds words up longestWord in length for the specified player. Implements Runnable so searches can be done without impacting responsiveness of the game.

Version:
0.3 $Revision: 1.3 $
Author:
Thomas David Baker

Method Summary
 void run()
          Performs the action of the word finder, finding words up to a certain maximum length on the previously specified board.
 void stopFinding()
          Tells this WordFinder to stop finding words (probably because it is the end of the round).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

stopFinding

public void stopFinding()
Tells this WordFinder to stop finding words (probably because it is the end of the round).


run

public void run()
Performs the action of the word finder, finding words up to a certain maximum length on the previously specified board.

Specified by:
run in interface Runnable