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

com.thaiopensource.relaxng.output.xsd.basic.ParticleRepeat Maven / Gradle / Ivy

There is a newer version: 20220510
Show 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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy