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

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

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

public class AttlistDecl extends TopLevel {
  
  private final NameSpec elementNameSpec;
  private final AttributeGroup attributeGroup;

  public AttlistDecl(NameSpec elementNameSpec, AttributeGroup attributeGroup) {
    this.elementNameSpec = elementNameSpec;
    this.attributeGroup = attributeGroup;
  }

  public int getType() {
    return ATTLIST_DECL;
  }

  public NameSpec getElementNameSpec() {
    return elementNameSpec;
  }
  
  public AttributeGroup getAttributeGroup() {
    return attributeGroup;
  }

  public void accept(TopLevelVisitor visitor) throws Exception {
    visitor.attlistDecl(elementNameSpec, attributeGroup);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy