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

hydra.langs.java.syntax.EnhancedForStatementNoShortIf Maven / Gradle / Ivy

package hydra.langs.java.syntax;

import java.io.Serializable;

public class EnhancedForStatementNoShortIf implements Serializable {
  public static final hydra.core.Name NAME = new hydra.core.Name("hydra/langs/java/syntax.EnhancedForStatementNoShortIf");
  
  public final hydra.langs.java.syntax.EnhancedForCond cond;
  
  public final hydra.langs.java.syntax.StatementNoShortIf body;
  
  public EnhancedForStatementNoShortIf (hydra.langs.java.syntax.EnhancedForCond cond, hydra.langs.java.syntax.StatementNoShortIf body) {
    this.cond = cond;
    this.body = body;
  }
  
  @Override
  public boolean equals(Object other) {
    if (!(other instanceof EnhancedForStatementNoShortIf)) {
      return false;
    }
    EnhancedForStatementNoShortIf o = (EnhancedForStatementNoShortIf) (other);
    return cond.equals(o.cond) && body.equals(o.body);
  }
  
  @Override
  public int hashCode() {
    return 2 * cond.hashCode() + 3 * body.hashCode();
  }
  
  public EnhancedForStatementNoShortIf withCond(hydra.langs.java.syntax.EnhancedForCond cond) {
    return new EnhancedForStatementNoShortIf(cond, body);
  }
  
  public EnhancedForStatementNoShortIf withBody(hydra.langs.java.syntax.StatementNoShortIf body) {
    return new EnhancedForStatementNoShortIf(cond, body);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy