//***************************************************************************** // // Beenish Chaudry, Geetika Tewari, Elif Tosun and // Ileana Streinu // // Summer 1999, Fall 1999, Spring 2000 // //***************************************************************************** // // StateResize.java // constant class StateResize // used for options in the Windows/Resize menu // //***************************************************************************** class StateResize{ public final static int not = 0; // frame not resizable public final static int basic = 1; // resizable, can increase the window // but points and origin do not move. public final static int aspect = 2;// resizable, can increase the window // origin and points are moved // proportionally in the new window }