Using Eclipse, how can I find which Java classes implement interface A AND interface B? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I just had the same problem, and I'm really missing this feature in the Eclipse search dialog. Going through all classes manually wasn't very pleasant, so I used this nasty workaround. Given this structure:
I changed B into:
This results in the following error for
Now it's possible to step through all these messages in the Problems view. |
|||
|
|
|
Ctrl+H, in file search tab search for "[implements A,B | implements B,A]" while file type is *.java. |
|||
|
|
Search -> File... -> |
|||
|