com.thaiopensource.xml.dtd.om.NotationDecl 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;
import com.thaiopensource.xml.em.ExternalId;
public class NotationDecl extends TopLevel {
private final String name;
private final ExternalId externalId;
public NotationDecl(String name, ExternalId externalId) {
this.name = name;
this.externalId = externalId;
}
public int getType() {
return NOTATION_DECL;
}
public String getName() {
return name;
}
public ExternalId getExternalId() {
return externalId;
}
public void accept(TopLevelVisitor visitor) throws Exception {
visitor.notationDecl(name, externalId);
}
}