You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I look up the type parameter on the method (@Ann3 B), then nagivate to its bound (@Ann4 A), then navigate to its bound (Number), I miss the @Ann2 annotation.
A situation like this occurs in the CDI Language Model TCK (which is admittedly my own doing...), so Jandex should support it.
I think the reason why this isn't supported in Jandex yet is because this can't be solved in general when indexing individual classes. This particular example could be, but one may have an inner class whose type parameter bound is a type parameter of its enclosing class. To fix this issue in general, an editing pass over the index during Indexer.complete() is required.
The text was updated successfully, but these errors were encountered:
In a situation like this:
when I look up the type parameter on the method (
@Ann3 B
), then nagivate to its bound (@Ann4 A
), then navigate to its bound (Number
), I miss the@Ann2
annotation.A situation like this occurs in the CDI Language Model TCK (which is admittedly my own doing...), so Jandex should support it.
I think the reason why this isn't supported in Jandex yet is because this can't be solved in general when indexing individual classes. This particular example could be, but one may have an inner class whose type parameter bound is a type parameter of its enclosing class. To fix this issue in general, an editing pass over the index during
Indexer.complete()
is required.The text was updated successfully, but these errors were encountered: