Example #1
0
 public void notationDatatype(EnumGroup enumGroup) throws Exception {
   w.startElement("tokenized");
   w.attribute("name", "NOTATION");
   enumGroup.accept(this);
   w.endElement();
 }
Example #2
0
 public void enumGroupDef(String name, EnumGroup enumGroup) throws Exception {
   w.startElement("enumGroup");
   w.attribute("name", name);
   enumGroup.accept(this);
   w.endElement();
 }
Example #3
0
 public void enumDatatype(EnumGroup enumGroup) throws Exception {
   w.startElement("tokenized");
   enumGroup.accept(this);
   w.endElement();
 }