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

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

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

public class Sequence extends ModelGroup {
  
  private final ModelGroup[] members;

  public Sequence(ModelGroup[] members) {
    this.members = members;
  }

  public int getType() {
    return SEQUENCE;
  }
  
  public ModelGroup[] getMembers() {
    ModelGroup[] tem = new ModelGroup[members.length];
    System.arraycopy(members, 0, tem, 0, members.length);
    return tem;
  }

  public void accept(ModelGroupVisitor visitor) throws Exception {
    visitor.sequence(getMembers());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy