Uses of Class
BoardCell

Uses of BoardCell in <Unnamed>
 

Methods in <Unnamed> that return types with arguments of type BoardCell
 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.
 java.util.List<BoardCell> BoggleModel.cellsForWord(java.lang.String word)
          Return a list of BoardCell objects corresponding to a word on the model's board.
 

Methods in <Unnamed> with parameters of type BoardCell
 int BoardCell.compareTo(BoardCell cell)
          Returns value indicating whether cell is less than, equal to, or greater than this cell as determined first by row value, then by column value for cells whose rows are equal
 boolean BoardCell.isNeighbor(BoardCell c)
          Returns true iff c is a neighbor of this board cell; neighbor means adjacent horizontally, vertically, or diagonally (not self).
 

Method parameters in <Unnamed> with type arguments of type BoardCell
 void IPlayerView.showWord(java.lang.String word, java.util.List<BoardCell> list, IPlayer player)
          A view should support some way to visualize a player's word found on a board at some set of board locations.