ru.yandex.qatools.camelot.common.FoundMethodProcessor Maven / Gradle / Ivy
package ru.yandex.qatools.camelot.common;
import java.lang.reflect.Method;
/**
* @author Ilya Sadykov (mailto: [email protected])
*/
public interface FoundMethodProcessor {
/**
* Check if the method with such annotation object should be used within the processor
*/
boolean appliesTo(Method method, A annotation);
}