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

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

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

public class AttributeGroupDef extends Def {
  
  private final AttributeGroup attributeGroup;

  public AttributeGroupDef(String name, AttributeGroup attributeGroup) {
    super(name);
    this.attributeGroup = attributeGroup;
  }

  public int getType() {
    return ATTRIBUTE_GROUP_DEF;
  }
  
  public AttributeGroup getAttributeGroup() {
    return attributeGroup;
  }
  
  public void accept(TopLevelVisitor visitor) throws Exception {
    visitor.attributeGroupDef(getName(), attributeGroup);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy