01: package org.enhydra.shark.xpdl.elements;
02:
03: import org.enhydra.shark.xpdl.XMLComplexElement;
04:
05: /**
06: * Represents coresponding element from XPDL schema.
07: *
08: * @author Sasa Bojanic
09: */
10: public class Automatic extends XMLComplexElement {
11:
12: public Automatic(StartFinishModes parent) {
13: super (parent, true);
14: }
15:
16: public boolean isEmpty() {
17: return false;
18: }
19:
20: protected void fillStructure() {
21: }
22:
23: }
|