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 Implementation extends XMLComplexElement {
11:
12: public Implementation(ActivityTypes parent) {
13: super (parent, true);
14: }
15:
16: protected void fillStructure() {
17: ImplementationTypes refType = new ImplementationTypes(this );
18:
19: add(refType);
20: }
21:
22: public ImplementationTypes getImplementationTypes() {
23: return (ImplementationTypes) get("Type");
24: }
25: }
|