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

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

The newest version!
package com.thaiopensource.relaxng.output.xsd.basic;

import com.thaiopensource.relaxng.edit.SourceLocation;

public class GroupRef extends Particle {
  private final String name;

  public GroupRef(SourceLocation location, Annotation annotation, String name) {
    super(location, annotation);
    this.name = name;
  }

  public String getName() {
    return name;
  }

  public  T accept(ParticleVisitor visitor) {
    return visitor.visitGroupRef(this);
  }

  public boolean equals(Object obj) {
    return super.equals(obj) && name.equals(((GroupRef)obj).name);
  }

  public int hashCode() {
    return super.hashCode() ^ name.hashCode();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy