KickJava   Java API By Example, From Geeks To Geeks.

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


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 WaitingTime extends XMLSimpleElement {
11
12    public WaitingTime (TimeEstimation parent) {
13       super(parent, false);
14    }
15
16 }
17
Popular Tags