
org.specrunner.expressions.Late Maven / Gradle / Ivy
package org.specrunner.expressions;
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 perform on plugin finalize, not creation.
*
* @author Thiago Santos
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ FIELD, METHOD })
public @interface Late {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy