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

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

There is a newer version: 20220510
Show newest version
package com.thaiopensource.xml.dtd.om;

public class EnumGroupDef extends Def {
  
  private final EnumGroup enumGroup;

  public EnumGroupDef(String name, EnumGroup enumGroup) {
    super(name);
    this.enumGroup = enumGroup;
  }

  public int getType() {
    return ENUM_GROUP_DEF;
  }
  
  public EnumGroup getEnumGroup() {
    return enumGroup;
  }
  
  public void accept(TopLevelVisitor visitor) throws Exception {
    visitor.enumGroupDef(getName(), enumGroup);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy