01: package org.enhydra.shark.xpdl.elements;
02:
03: import org.enhydra.shark.xpdl.XMLSimpleElement;
04:
05: /**
06: * Represents coresponding element from XPDL schema.
07: *
08: * @author Sasa Bojanic
09: */
10: public class XPDLVersion extends XMLSimpleElement {
11:
12: public XPDLVersion(PackageHeader parent) {
13: super (parent, true);
14: }
15: }
|