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 Manual extends XMLComplexElement {
11:
12: public Manual(StartFinishModes parent) {
13: super (parent, true);
14: }
15:
16: /**
17: * Overrides super-class method to indicate that this element
18: * is never empty, so it's tag will always be written into
19: * XML file.
20: *
21: * @return <tt>false</tt>
22: */
23: public boolean isEmpty() {
24: return false;
25: }
26:
27: protected void fillStructure() {
28: }
29: }
|