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

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

The newest version!
package com.thaiopensource.xml.dtd.om;

public class ZeroOrMore extends ModelGroup {
  
  private final ModelGroup member;

  public ZeroOrMore(ModelGroup member) {
    this.member = member;
  }

  public int getType() {
    return ZERO_OR_MORE;
  }
  
  public ModelGroup getMember() {
    return member;
  }

  public void accept(ModelGroupVisitor visitor) throws Exception {
    visitor.zeroOrMore(member);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy