/** * TicTacToeBoard--board for playing the game TicTacToe * * @author Phill Conrad, and (insert your name here) * @version lab04 for CS56, Spring 2011 * @see TicTacToeBoardTest */ public class TicTacToeBoard { /** Constructor */ public TicTacToeBoard() { } public String toString() { return "Stub!"; } }