01: /**
02: * Miroslav Popov, Nov 30, 2005
03: * miroslav.popov@gmail.com
04: */package org.enhydra.jawe.components.graph;
05:
06: import org.enhydra.jawe.JaWEComponent;
07:
08: /**
09: * @author Miroslav Popov
10: *
11: */
12: public interface GraphOverview extends JaWEComponent {
13:
14: void init(GraphController controller);
15:
16: void displayGraph();
17:
18: Graph getGraph();
19:
20: }
|