![JAR search and dependency download from the Maven repository](/logo.png)
checkers.quals.DefaultQualifier Maven / Gradle / Ivy
package checkers.quals;
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
import java.lang.annotation.Target;
/**
* Applied to a declaration of a package, type, method, variable, etc.,
* specifies that the given annotation should be the default. The default is
* applied to all types within the declaration for which no other
* annotation is explicitly written.
* If multiple DefaultQualifier annotations are in scope, the innermost one
* takes precedence.
* DefaultQualifier takes precedence over {@link DefaultQualifierInHierarchy}.
*
*
* If you wish to write multiple @DefaultQualifier annotations (for
* unrelated type systems, or with different {@code locations} fields) at
* the same location, use {@link DefaultQualifiers}.
*
* @see DefaultLocation
* @see DefaultQualifiers
* @see DefaultQualifierInHierarchy
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({PACKAGE, TYPE, CONSTRUCTOR, METHOD, FIELD, LOCAL_VARIABLE, PARAMETER})
public @interface DefaultQualifier {
/**
* The Class for the default annotation.
*
*
*
* To prevent affecting other type systems, always specify an annotation
* in your own type hierarchy. (For example, do not set
* "checkers.quals.Unqualified" as the default.)
*/
Class extends Annotation> value();
/** @return the locations to which the annotation should be applied */
DefaultLocation[] locations() default {DefaultLocation.ALL};
}