KickJava   Java API By Example, From Geeks To Geeks.

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


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 Cost extends XMLSimpleElement {
11
12    public Cost (SimulationInformation parent) {
13       super(parent, true);
14    }
15 }
16
Popular Tags