com.thaiopensource.xml.dtd.om.ParamDef 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 ParamDef extends Def {
private final String value;
public ParamDef(String name, String value) {
super(name);
this.value = value;
}
public int getType() {
return PARAM_DEF;
}
public String getValue() {
return value;
}
public void accept(TopLevelVisitor visitor) throws Exception {
visitor.paramDef(getName(), value);
}
}