Uses of Class
BoggleBoard

Uses of BoggleBoard in <Unnamed>
 

Methods in <Unnamed> that return BoggleBoard
static BoggleBoard BoggleBoardFactory.getBoard(int size)
          Return a random board of specified size using the factory's BoardMaker.
 BoggleBoard HighScoreBoardMaker.makeBoard(int rows)
           
 BoggleBoard StandardBoardMaker.makeBoard(int rows)
          Returns random boggle board of specified number of rows, boards are square.
 BoggleBoard IBoardMaker.makeBoard(int rows)
          Return square board of specified size.
 

Methods in <Unnamed> with parameters of type BoggleBoard
 java.util.List<BoardCell> BadWordFinder.cellsForWord(BoggleBoard board, java.lang.String word)
           
 java.util.List<BoardCell> IWordOnBoardFinder.cellsForWord(BoggleBoard board, java.lang.String word)
          Return a list of cells on the given board such that the i-th element of the list correponds to the i-th character of the string as found on the board.
 

Constructors in <Unnamed> with parameters of type BoggleBoard
BoggleModel(BoggleBoard b, ILexicon lex)
          Construct the model from a board and a lexicon.