All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.xml.dtd.om.ModelGroupVisitor Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
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;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy