@ Объект не помечен аннотацией @Documented.
@Target(TYPE)
@Retention(RUNTIME)
public @interface Entity {
Если вы попытаетесь использовать аннотацию @ javax.Inject, вы должны увидеть JavaDoc, так как он помечен @ документированным.
@Target({ METHOD, CONSTRUCTOR, FIELD })
@Retention(RUNTIME)
@Documented
public @interface Inject {}
Аннотация @Documented с JavaDoc:
/**
* Indicates that annotations with a type are to be documented by javadoc
* and similar tools by default. This type should be used to annotate the
* declarations of types whose annotations affect the use of annotated
* elements by their clients. If a type declaration is annotated with
* Documented, its annotations become part of the public API
* of the annotated elements.
*
* @author Joshua Bloch
* @version 1.6, 11/17/05
* @since 1.5
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Documented {
}
Решение - импортировать исходный код Java вместо JavaDoc. Тогда все будет работать так, как вы ожидаете.