01: package org.enhydra.jawe.components.graph;
02:
03: import org.jgraph.graph.DefaultPort;
04:
05: /**
06: * Interface for defining graph port object.
07: *
08: * @author Sasa Bojanic
09: */
10: public abstract class GraphPortInterface extends DefaultPort {
11:
12: public GraphPortInterface(String name) {
13: super (name);
14: }
15:
16: public abstract GraphActivityInterface getActivity();
17:
18: public abstract String getType();
19:
20: }
|