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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy