com.thaiopensource.xml.dtd.om.ElementDecl 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
Jing/Trang - tools for validating and translating RelaxNG
The newest version!
package com.thaiopensource.xml.dtd.om;
public class ElementDecl extends TopLevel {
private final NameSpec nameSpec;
private final ModelGroup modelGroup;
public ElementDecl(NameSpec nameSpec, ModelGroup modelGroup) {
this.nameSpec = nameSpec;
this.modelGroup = modelGroup;
}
public int getType() {
return ELEMENT_DECL;
}
public NameSpec getNameSpec() {
return nameSpec;
}
public ModelGroup getModelGroup() {
return modelGroup;
}
public void accept(TopLevelVisitor visitor) throws Exception {
visitor.elementDecl(nameSpec, modelGroup);
}
}