Uses of Class
java.lang.annotation.Target
-
Packages that use Target Package Description java.beans Contains classes related to developing beans -- components based on the JavaBeans™ architecture.java.lang Provides classes that are fundamental to the design of the Java programming language.java.lang.annotation Provides library support for the Java programming language annotation facility.javax.annotation.processing Facilities for declaring annotation processors and for allowing annotation processors to communicate with an annotation processing tool environment.javax.management Provides the core classes for the Java Management Extensions.javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. -
-
Uses of Target in java.beans
Classes in java.beans with annotations of type Target Modifier and Type Class Description interface
BeanProperty
An annotation used to specify some property-related information for the automatically generatedBeanInfo
classes.interface
ConstructorProperties
An annotation on a constructor that shows how the parameters of that constructor correspond to the constructed object's getter methods.interface
JavaBean
An annotation used to specify some class-related information for the automatically generatedBeanInfo
classes.interface
Transient
Indicates that an attribute called "transient" should be declared with the givenvalue
when theIntrospector
constructs aPropertyDescriptor
orEventSetDescriptor
classes associated with the annotated code element. -
Uses of Target in java.lang
Classes in java.lang with annotations of type Target Modifier and Type Class Description interface
Deprecated
A program element annotated@Deprecated
is one that programmers are discouraged from using.interface
FunctionalInterface
An informative annotation type used to indicate that an interface type declaration is intended to be a functional interface as defined by the Java Language Specification.interface
Override
Indicates that a method declaration is intended to override a method declaration in a supertype.interface
SafeVarargs
A programmer assertion that the body of the annotated method or constructor does not perform potentially unsafe operations on its varargs parameter.interface
SuppressWarnings
Indicates that the named compiler warnings should be suppressed in the annotated element (and in all program elements contained in the annotated element). -
Uses of Target in java.lang.annotation
Classes in java.lang.annotation with annotations of type Target Modifier and Type Class Description interface
Documented
If the annotation@Documented
is present on the declaration of an annotation type A, then any@A
annotation on an element is considered part of the element's public contract.interface
Inherited
Indicates that an annotation type is automatically inherited.interface
Native
Indicates that a field defining a constant value may be referenced from native code.interface
Repeatable
The annotation typejava.lang.annotation.Repeatable
is used to indicate that the annotation type whose declaration it (meta-)annotates is repeatable.interface
Retention
Indicates how long annotations with the annotated type are to be retained.interface
Target
Indicates the contexts in which an annotation type is applicable. -
Uses of Target in javax.annotation.processing
Classes in javax.annotation.processing with annotations of type Target Modifier and Type Class Description interface
Generated
The Generated annotation is used to mark source code that has been generated.interface
SupportedAnnotationTypes
An annotation used to indicate what annotation types an annotation processor supports.interface
SupportedOptions
An annotation used to indicate what options an annotation processor supports.interface
SupportedSourceVersion
An annotation used to indicate the latest source version an annotation processor supports. -
Uses of Target in javax.management
Classes in javax.management with annotations of type Target Modifier and Type Class Description interface
ConstructorParameters
An annotation on a constructor that shows how the parameters of that constructor correspond to the constructed object's getter methods.interface
DescriptorKey
Meta-annotation that describes how an annotation element relates to a field in aDescriptor
.interface
MXBean
Annotation to mark an interface explicitly as being an MXBean interface, or as not being an MXBean interface. -
Uses of Target in javax.swing
Classes in javax.swing with annotations of type Target Modifier and Type Class Description interface
SwingContainer
An annotation used to specify some swing-related information for the automatically generatedBeanInfo
classes.
-