//***************************************************************************** // // Beenish Chaudry, Geetika Tewari, Elif Tosun and // Ileana Streinu // // Summer 1999, Fall 1999, Spring 2000 // //***************************************************************************** // // StateKey.java // // constant class // used for options in the Edit menu/Edit User Label // and Select // tell how to interpret key strokes: // to edit a label or to move the selected point(s) // //***************************************************************************** class StateKey{ public final static int inactive = 0; // no action // points public final static int labeleditP = 2; // edit the point label public final static int moveSelectP = 4; // move selected point // lines public final static int labeleditL = 1; // edit the line label public final static int moveSelectL = 3; // move selected line }