//***************************************************************************** // // Beenish Chaudry, Geetika Tewari, Elif Tosun and // Ileana Streinu // // Summer 1999, Fall 1999, Spring 2000 // //***************************************************************************** // // StateLabel.java // // constant class // used for options in the Edit menu and Set of Points, set Origin // tell how to interpret mouse clicks // //***************************************************************************** class StateLabel{ // points public final static int without = 0; // no label public final static int user = 1; // defined by user public final static int insert = 2; // insertion order public final static int xcoord = 3; // xcoordinate order // lines // later .... } // end class StateLabel