/* * CalculatorView.java * * Created on December 5, 2002, 2:27 AM */ package Calculator; import CollabUtils.*; import java.util.GregorianCalendar; /** View of a Building model -- STARTER CLASS. * */ public class CalculatorView implements ICollabView, IApplicationIdentification { public CalculatorView(CalculatorModel calcModel) { } /** 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() { } /** Requests the view to be redrawn. * In the case of a GUI component, this might reduce to a one-line call * to repaint(). * In the case of a console view, the method should take into account the * fact that other components may be displaying message on the console. * It would be advisable to mark view messages in some way. */ public void reDrawView() { } /** Signals that no further viewing will be demanded. * The viewer is free to clean up or terminate. */ public void terminateView() { } //end BuildingView }