KickJava   Java API By Example, From Geeks To Geeks.

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


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

10 public class Created extends XMLSimpleElement {
11
12    public Created (PackageHeader parent) {
13       super(parent, true);
14    }
15
16    public Created (ProcessHeader parent) {
17       super(parent, false);
18    }
19    
20 }
21
Popular Tags