Reputation: 6494
Is there a way to obtain a list of all classes that implement a certain Interface inside a directory?
Upvotes: 0
Views: 620
Reputation: 3717
In the directory:
grep 'implements {x}' *
That should do it.
Upvotes: 1