if you take a look on jsr-303 (bean validation) you notice that annotations can be be put on ANNOTATION_TYPE in @target like (e.g. javax.validation.constraints.Min)
By this the bean validation are easily extended to @OnlyPositiveNumber.
in jaxb for Example (a bad one) I could have created @XmlAlwaysRequiredElement
Is there a good reason why JAXB annotations like XmlElement are not using the same technique?