checkers.quals.DefaultQualifierInHierarchy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jme3-core Show documentation
Show all versions of jme3-core Show documentation
jMonkeyEngine is a 3-D game engine for adventurous Java developers
The newest version!
package checkers.quals;
import java.lang.annotation.Documented;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates that the annotated qualifier is the default qualifier in the
* qualifier hierarchy: it applies if the programmer writes no explicit
* qualifier.
*
*
* The {@link DefaultQualifier} annotation, which targets Java code elements,
* takes precedence over {@code DefaultQualifierInHierarchy}.
*
*
* Each type qualifier hierarchy may have at most one qualifier marked as
* {@code DefaultQualifierInHierarchy}.
*
* @see checkers.quals.DefaultQualifier
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ANNOTATION_TYPE)
public @interface DefaultQualifierInHierarchy {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy