001 /* 002 add * Calculator RunCalc (alternate, simpler main) 003 * 004 * Developed for "Rethinking CS101", a project of Lynn Andrea Stein's AP Group. 005 * For more information, see <a href="http://www.ai.mit.edu/projects/cs101/">the 006 * CS101 homepage</a> or email <las@ai.mit.edu>. 007 * 008 * Copyright (C) 1999 Massachusetts Institute of Technology. 009 * Please do not redistribute without obtaining permission. 010 */ 011 package calculator; 012 013 /** 014 * This is a basic skeleton application which launches the necessary 015 * code for a four-function calculator. 016 * <P>Copyright (c) 1999 Massachusetts Institute of Technology 017 * 018 * @author Lynn Andrea Stein, las@ai.mit.edu 019 * @version: $Id: RunCalc.java,v 1.1.1.1 2002/06/05 21:56:34 root Exp $ 020 * 021 * @see calculator.ButtonHandler 022 * 023 */ 024 public class RunCalc 025 { 026 027 /** 028 * Prevent instantiation. 029 */ 030 private RunCalc() {} 031 032 /** 033 * No args, just start the thing. 034 */ 035 public static void main (String[] argv) 036 { 037 038 new ButtonHandler(); 039 } 040 } 041 042 043 /* Comments: 044 * 045 * History: 046 * $Log: RunCalc.java,v $ 047 * Revision 1.1.1.1 2002/06/05 21:56:34 root 048 * CS101 comes to Olin finally. 049 * 050 * Revision 1.1 1999/10/08 15:09:24 las 051 * This pset replaces the old Calculator pset. However, not everything 052 * has been transferred. At the moment, it's just java, doc, and index. 053 * The rest are still in the repository under Calculator-Old. 054 * 055 * 056 */ 057 058 059 060