http://download.oracle.com/javase/6/docs/api/java/lang/annotation/Target.html

This meta-annotation indicates that the declared type is intended solely for use as a member type in complex annotation type declarations. It cannot be used to annotate anything directly:

@Target({}) 
public @interface MemberType {
    ...
}

What does this mean? Any example code using this?

NB: I'm referring the the empty args use of @Target, as documented in the JavaDoc, and not to the well-documented use of Target with enum constants.

link|improve this question

69% accept rate
broken link.... – skaffman Dec 10 '10 at 9:54
I've fixed the link. – GaryF Dec 10 '10 at 10:22
feedback

2 Answers

up vote 3 down vote accepted

An empty target is used when the annotation can only be used within other annotations (with non-empty target sets), and can't be attached to anything directly. An example of use of this is in JAXB, where the @XmlNs annotation has an empty target list; the code below is extracted from my own code (with some very minor changes) and is the complete package-info.java file for this particular package:

@XmlSchema(namespace = Namespaces.MAIN,
    xmlns = { @XmlNs(prefix = "xlink", namespaceURI = Namespaces.XLINK) },
    elementFormDefault = QUALIFIED, attributeFormDefault = QUALIFIED)
package example.bindings;

import static javax.xml.bind.annotation.XmlNsForm.QUALIFIED;

import javax.xml.bind.annotation.XmlNs;
import javax.xml.bind.annotation.XmlSchema;
import example.common.Namespaces;

The @XmlNs annotation is used to instruct JAXB what prefix to use for the XLink namespace, but that information can only ever be placed at the schema level (a restriction from general XML, but not a problem for the most part) and because there may be many such mappings, it can't be attached to the package directly but instead has to go inside an array-valued property of the main @XmlSchema annotation.

link|improve this answer
please provide also the definition code of @XmlNs and @XmlSchema. – simpatico Dec 10 '10 at 15:40
@simpatico: They're just annotations and are trivial to reverse engineer. Omitting the package declaration and imports, @XmlNs is just this: @Retention(RUNTIME) @Target({}) public @interface XmlNs { String prefix(); String namespaceURI(); } and @XmlSchema is similar (if longer; it has 5 attributes, not 2). References to contained annotations is done by just having those other annotations as class names (thus in @XmlSchema, the xmlns field is of type XmlNs[]). – Donal Fellows Dec 10 '10 at 16:07
Annotations are purely declaratory; they cannot contain processing. If you want to know how to process them, ask a separate question. :-) – Donal Fellows Dec 10 '10 at 16:08
feedback

The @Target annotation is a special annotation to declare annotations. It is a java "buildin" with a self defined declaration (@Target has a declaration of @Target(ElementType.ANNOTATION_TYPE)). So you cannot use it on a class or method, just on annotations. "Normal" annotations need this to define where they can be used.

Following the simple Spring annotation @Required used for bean setters of required bean properties:

@Target(ElementType.METHOD)
public @interface Required {

}

The annotation @Required can be used on methods only, not on fields, classes or other elements.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.