All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.xml.dtd.om.ParamDef Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
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);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy