![JAR search and dependency download from the Maven repository](/logo.png)
com.thaiopensource.xml.dtd.om.IgnoredSection 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 class IgnoredSection extends TopLevel {
private final Flag flag;
private final String contents;
public IgnoredSection(Flag flag, String contents) {
this.flag = flag;
this.contents = contents;
}
public int getType() {
return IGNORED_SECTION;
}
public Flag getFlag() {
return flag;
}
public String getContents() {
return contents;
}
public void accept(TopLevelVisitor visitor) throws Exception {
visitor.ignoredSection(flag, contents);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy