-
Enhancement
-
Resolution: Fixed
-
P4
-
6
-
b107
-
generic
-
generic
-
Verified
The javadoc for the annotations applied to an annotated element uses a verbose form; e.g.
@Documented
@Retention(value=RUNTIME)
@Target(value=ANNOTATION_TYPE)
public @interface Inherited
The more compact
@Documented
@Retention(RUNTIME)
@Target(ANNOTATION_TYPE)
public @interface Inherited
could often be used instead.
@Documented
@Retention(value=RUNTIME)
@Target(value=ANNOTATION_TYPE)
public @interface Inherited
The more compact
@Documented
@Retention(RUNTIME)
@Target(ANNOTATION_TYPE)
public @interface Inherited
could often be used instead.
- relates to
-
JDK-8163315 Implement an API to identify an implicitly declared annotation (or declaration)
-
- Resolved
-
-
JDK-6469561 javadoc for annotation types should not display "public abstract" modifiers on methods
-
- Closed
-