1 package org.enhydra.shark.xpdl;2 3 import org.enhydra.shark.xpdl.XMLComplexElement;4 5 /**6 * Helper class to allow an empty choice that will not write 7 * anything to XML.8 * 9 * @author Sasa Bojanic10 */11 public final class XMLEmptyChoiceElement extends XMLComplexElement {12 13 public XMLEmptyChoiceElement (XMLElement parent) {14 super(parent, false);15 }16 17 protected void fillStructure () {}18 }19