com.thaiopensource.xml.dtd.om.ModelGroupVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Trang, a multi-format schema converter based on RELAX NG.
package com.thaiopensource.xml.dtd.om;
public interface ModelGroupVisitor {
void choice(ModelGroup[] members) throws Exception;
void sequence(ModelGroup[] members) throws Exception;
void oneOrMore(ModelGroup member) throws Exception;
void zeroOrMore(ModelGroup member) throws Exception;
void optional(ModelGroup member) throws Exception;
void modelGroupRef(String name, ModelGroup modelGroup) throws Exception;
void elementRef(NameSpec name) throws Exception;
void pcdata() throws Exception;
void any() throws Exception;
}