001 /* 002 * Main.java 003 * Part of the Scribble problem set. 004 * 005 * Developed for "Rethinking CS101", a project of Lynn Andrea Stein's AP Group. 006 * For more information, see http://www.ai.mit.edu/projects/cs101, the 007 * CS101 homepage or email las@ai.mit.edu. 008 * 009 * Copyright (C) 1998 Massachusetts Institute of Technology. 010 * Please do not redistribute without obtaining permission. 011 */ 012 013 package scribble; 014 015 /** 016 * Main is a wrapper for BetterBoard. 017 * 018 * <P>Copyright (c) 1998 Massachusetts Institute of Technology 019 * 020 * @author Todd C. Parnell, tparnell@ai.mit.edu 021 * @version $Id: Main.java,v 1.1.1.1 2002/06/05 21:56:35 root Exp $ 022 */ 023 public class Main { 024 025 /** 026 * Creates a new BetterBoard with a new ScribbleCanvas. 027 */ 028 public static void main (String[] argv) { 029 BetterBoard bb = new BetterBoard(); 030 } 031 032 /** 033 * Prevent instantiation. 034 */ 035 private Main() {} 036 } 037 038 /* 039 * $Log: Main.java,v $ 040 * Revision 1.1.1.1 2002/06/05 21:56:35 root 041 * CS101 comes to Olin finally. 042 * 043 * Revision 1.1 2000/05/06 22:30:58 mharder 044 * Moved to scribble subdirectory. 045 * 046 * Revision 1.5 1998/07/24 16:44:51 tparnell 047 * Placate new javadoc behavior 048 * 049 * Revision 1.4 1998/07/21 19:06:52 tparnell 050 * added private Main() 051 * 052 * Revision 1.3 1998/07/21 14:09:03 tparnell 053 * minor bugfixes necessary b/c 1.2 complier is more picky 054 * 055 * Revision 1.2 1998/07/20 18:55:32 tparnell 056 * Added javadoc and logging. Minor code mods for greater consistency 057 * between files. 058 * 059 */ 060 061