KickJava   Java API By Example, From Geeks To Geeks.

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


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

10 public class ListType extends XMLComplexElement {
11
12    public ListType (DataTypes parent) {
13       super(parent,true);
14    }
15
16    protected void fillStructure () {
17       DataTypes refType=new DataTypes(this);
18       add(refType);
19    }
20
21    public DataTypes getDataTypes() {
22       return (DataTypes)get("Type");
23    }
24    
25 }
26
Popular Tags