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.