/* * This interface defines a way to set an integer value. */ public interface IntSetter { public void set(int value); }