
org.specrunner.parameters.DontEval Maven / Gradle / Ivy
package org.specrunner.parameters;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation to sign the evaluator to ignore an attribute or method.
*
* @author Thiago Santos
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ FIELD, METHOD })
public @interface DontEval {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy