/**
 *  Interface to characterize objects that have an integer value.
 */
public interface Settable {
    /**
     *  Set the value of an integer property.
     *  @param newValue The value of an integer property to set.
     */
    public void setInt (int newValue);
}
