Allow TYPE_USE
on MagicConstant
, Pattern
, RegExp
and Subst
#98
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This should fix #43 (and complements #77 as it enable
TYPE_USE
on more annotations).The main goal of this PR is to enable documenting the code on the generic type parameters. Later this could also be integrated in IDE inspection.
After this PR and this is released a developer can document it's API this way :
Since
TYPE_USE
is not available prior Java 8, the Java 5 project stripped this enum value from source. However it was missing some cases. This PR is more lenient in detecting and stripping this value.@Target({LOCAL_VARIABLE, TYPE_USE, ANNOTATION_TYPE})
=>
@Target({LOCAL_VARIABLE, ANNOTATION_TYPE})
@Target({ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE, ElementType.PARAMETER})
=>
@Target({ElementType.LOCAL_VARIABLE, ElementType.PARAMETER})
@Target({ElementType.FIELD, ElementType.TYPE_USE})
=>
@Target({ElementType.FIELD, })
@Target({ElementType.TYPE_USE, ElementType.FIELD})
=>
@Target({ ElementType.FIELD})