com.thaiopensource.relaxng.output.xsd.basic.ParticleRepeat 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.relaxng.output.xsd.basic;
import com.thaiopensource.relaxng.edit.SourceLocation;
public class ParticleRepeat extends Particle {
private final Particle child;
private final Occurs occurs;
public ParticleRepeat(SourceLocation location, Annotation annotation, Particle child, Occurs occurs) {
super(location, annotation);
this.child = child;
this.occurs = occurs;
}
public Particle getChild() {
return child;
}
public Occurs getOccurs() {
return occurs;
}
public T accept(ParticleVisitor visitor) {
return visitor.visitRepeat(this);
}
public boolean equals(Object obj) {
if (!super.equals(obj))
return false;
ParticleRepeat other = (ParticleRepeat)obj;
return this.child.equals(other.child) && this.occurs.equals(other.occurs);
}
public int hashCode() {
return super.hashCode() ^ child.hashCode() ^ occurs.hashCode();
}
}