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

org.specrunner.expressions.Late Maven / Gradle / Ivy

There is a newer version: 1.5.17
Show newest version
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