-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add method to find extending interfaces of target interface #65
Comments
@Ladicek I think that this one would deserve your attention ;-) |
Good point, indeed neither |
Here's a funny thing: I still intend to add |
Sounds reasonable. |
Hm, another funny thing: the javadoc of @n1hility can tell us more ;-). |
I don't think that I agree that it was intentional for |
I have an implementation over in #184. It doesn't change existing behavior, though I could be persuaded otherwise :-) |
Done in #184. |
I would like to be able to (efficiently) look up all the interfaces that extends a target interface.
Say for example that I have
and there is an interface that extends is:
Neither
index.getAllKnownSubclasses()
norindex.getAllKnownImplementors()
covers the aforementioned usecase so I am forced do the following (inefficient) lookup:The text was updated successfully, but these errors were encountered: