java.lang.annotation.Target Maven / Gradle / Ivy
package java.lang.annotation;
/**
* Indicates the kinds of program element to which an annotation type
* is applicable.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Target
{
ElementType[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy