KickJava   Java API By Example, From Geeks To Geeks.

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


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

11 public class ActivitySets extends XMLCollection {
12
13    public ActivitySets (WorkflowProcess parent) {
14       super (parent, false);
15    }
16
17    public XMLElement generateNewElement() {
18       return new ActivitySet(this);
19    }
20
21    public ActivitySet getActivitySet (String JavaDoc Id) {
22       return (ActivitySet)super.getCollectionElement(Id);
23    }
24
25 }
26
Popular Tags