com.thaiopensource.xml.dtd.om.FlagDef 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 FlagDef extends Def {
private final Flag flag;
public FlagDef(String name, Flag flag) {
super(name);
this.flag = flag;
}
public int getType() {
return FLAG_DEF;
}
public Flag getFlag() {
return flag;
}
public void accept(TopLevelVisitor visitor) throws Exception {
visitor.flagDef(getName(), flag);
}
}