/* * TicTacToeController.java * * Created on December 5, 2002, 2:35 AM */ package TicTacToe; import CollabUtils.*; import java.util.GregorianCalendar; /** * * @author dickey */ public class TicTacToeController implements ICollabController, IApplicationIdentification{ /** Creates a new instance of TicTacToeController */ public TicTacToeController() { } /** Main method for the TicTacToeProject. * This method should create the model and create a view, passing it the model. * The Controller should stay active throughout the life of the game. * @param args No arguments are required by the project specifications. * Implementors are free to define a use for command-line arguments, but should make it * clear to users what the proper usage of arguments is. It is probably * best to avoid them, but there is no prohibition. */ public static void main(String[] args) { } /** Return a (short) string identifying the authors of the program. * NOTE FOR CSE143 PROJECT 4: DO NOT GIVE PERSONAL INFORMATION UNLESS YOU * ARE COMFORTABLE WITH THE WHOLE WORLD SEEING IT! A code name or nickname * is sufficient. */ public String getApplicationAuthor() { } /** return a string (as long as desired) identifying the authors of the program. */ public String getApplicationAuthorDetails() { } /** return the date of creation or update */ public GregorianCalendar getApplicationDate() { } /** return a (short) description of the application. */ public String getApplicationDescription() { } /** return a string (as long as desired) describing the application */ public String getApplicationDescriptionDetails() { } /** return a string (as long as desired) giving any details of * usage or applicability which the author wishes to convey to * a user or a client. */ public String getUsageInformation() { } /** Signal that the application should or will shut down. * The controller has an opportunity to notify or shut down other * components, clean itself up, and/or terminate the application. */ public void terminateApplication() { } //end TicTacToeController }