1 package org.enhydra.shark.xpdl.elements; 2 3 import org.enhydra.shark.xpdl.XMLCollection; 4 import org.enhydra.shark.xpdl.XMLElement; 5 6 11 public class Activities extends XMLCollection { 12 13 public Activities (WorkflowProcess parent) { 14 super (parent, false); 15 } 16 17 public Activities (ActivitySet parent) { 18 super (parent, false); 19 } 20 21 public XMLElement generateNewElement() { 22 return new Activity(this); 23 } 24 25 public Activity getActivity (String Id) { 26 return (Activity)super.getCollectionElement(Id); 27 } 28 29 } 30 | Popular Tags |