KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > xpdl > elements > Implementation


1 package org.enhydra.shark.xpdl.elements;
2
3 import org.enhydra.shark.xpdl.XMLComplexElement;
4
5 /**
6  * Represents coresponding element from XPDL schema.
7  *
8  * @author Sasa Bojanic
9  */

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 }
26
Popular Tags