1 package org.enhydra.shark.xpdl.elements; 2 3 import org.enhydra.shark.xpdl.XMLComplexElement; 4 5 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 |