/** A simple utility class that behaves like a C *int. It allows a value to * be changed simultaneously for several classes. * * @author Russell Young tetrii@young-0.com * @version 1.0 */ /* Feel free to use, distribute, or change, with the only restriction that you * should not remove my name from the original code, and you should document * your changes so there is no confusion about whose bugs they are. */ public class variableInt { int value; public variableInt(int i) {value = i;} public int value() {return(value);} public void value(int i) {value = i;} public String toString() {return("variableInt " + value());} }