KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > xpdl > XMLSimpleElement


1 package org.enhydra.shark.xpdl;
2
3 /**
4  * Class that represents simple element from XML schema.
5  *
6  * @author Sasa Bojanic
7  */

8 public abstract class XMLSimpleElement extends XMLElement {
9
10    public XMLSimpleElement (XMLElement parent, boolean isRequired) {
11       super(parent, isRequired);
12    }
13
14 }
15
Popular Tags