import java.util.List; import java.util.ArrayList; /** * Cannot find any words on a board. Useful for * debugging a game before a good implementation * is written. * @author Owen Astrachan * */ public class BadWordOnBoardFinder implements IWordOnBoardFinder { private ArrayList myEmptyList = new ArrayList(); public List cellsForWord(BoggleBoard board, String word) { return myEmptyList; } }