1 package JSci.instruments; 2 3 import java.awt.*; 4 5 /** 6 * An object that privides Components that control or show something 7 * about it. 8 */ 9 public interface Control { 10 /** @return the component that controls the object that implements 11 this interface */ 12 Component getControlComponent(); 13 } 14