/* * BuildingController.java * * Created on December 5, 2002, 2:35 AM */ package BuildSim; import CollabUtils.*; import java.util.GregorianCalendar; /** * * @author dickey */ public class BuildingController implements ICollabController, IApplicationIdentification{ /** Creates a new instance of BuildingController */ public BuildingController() { } /** 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() { } public static void main(String[] args) { } /** Signal that the application should or will shut down. * The controller has a window in which to notify or shut down other * components, clean itself up, and or terminate the application. */ public void terminateApplication() { } }