01: package org.enhydra.jawe.components.graph;
02:
03: /**
04: * Interface for defining Activity graph object.
05: *
06: * @author Sasa Bojanic
07: */
08: public abstract class GraphBubbleActivityInterface extends
09: GraphActivityInterface {
10:
11: /**
12: * Gets description of bubble.
13: */
14: public abstract StartEndDescription getStartEndDescription();
15:
16: public abstract boolean isStart();
17:
18: }
|