KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > instruments > Control


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
Popular Tags