KickJava   Java API By Example, From Geeks To Geeks.

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


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

12 public class Responsibles extends XMLCollection {
13
14    public Responsibles (RedefinableHeader parent) {
15       super(parent, false);
16    }
17
18    public XMLElement generateNewElement() {
19       return new Responsible(this);
20    }
21
22 }
23
Popular Tags