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

org.testng.internal.reflect.AbstractMethodMatcher Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal.reflect;

public abstract class AbstractMethodMatcher implements MethodMatcher {

  private final MethodMatcherContext context;
  private Boolean conforms = null;

  public AbstractMethodMatcher(final MethodMatcherContext context) {
    this.context = context;
  }

  protected MethodMatcherContext getContext() {
    return context;
  }

  protected Boolean getConforms() {
    return conforms;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public boolean conforms() {
    boolean hasConformance = false;
    try {
      hasConformance = hasConformance();
    } finally {
      conforms = hasConformance ? Boolean.TRUE : Boolean.FALSE;
    }
    return hasConformance;
  }

  /**
   * Checks if the arguments conform to the method.
   *
   * @return conformance
   */
  protected abstract boolean hasConformance();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy