com.thaiopensource.xml.dtd.om.Sequence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Jing/Trang - tools for validating and translating RelaxNG
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());
}
}