01: package org.enhydra.jawe.components.graph;
02:
03: import java.awt.Dimension;
04:
05: import org.jgraph.graph.PortView;
06:
07: /**
08: * Interface for representing a view for a JGraph's port objects.
09: *
10: * @author Sasa Bojanic
11: */
12: public abstract class GraphPortViewInterface extends PortView {
13:
14: public GraphPortViewInterface(Object cell) {
15: super (cell);
16: }
17:
18: public abstract void setPortSize(Dimension d);
19:
20: public abstract Dimension getPortSize();
21:
22: public abstract GraphActivityInterface getGraphActivity();
23: }
|