public void modelGroupDef(String name, ModelGroup modelGroup) throws Exception { w.startElement("modelGroup"); w.attribute("name", name); modelGroup.accept(this); w.endElement(); }
public void optional(ModelGroup member) throws Exception { w.startElement("optional"); member.accept(this); w.endElement(); }
public void elementDecl(NameSpec nameSpec, ModelGroup modelGroup) throws Exception { w.startElement("element"); nameSpec.accept(this); modelGroup.accept(this); w.endElement(); }
public void zeroOrMore(ModelGroup member) throws Exception { w.startElement("zeroOrMore"); member.accept(this); w.endElement(); }