01: package org.enhydra.jawe;
02:
03: import javax.swing.JComponent;
04:
05: /**
06: * Interface for displaying JaWE components.
07: *
08: * @author Sasa Bojanic
09: */
10: public interface JaWEComponentView {
11:
12: void configure();
13:
14: void init();
15:
16: JaWEComponent getJaWEComponent();
17:
18: JComponent getDisplay();
19: }
|