com.thaiopensource.xml.dtd.om.ZeroOrMore 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 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);
}
}