I have some interface Action
, and most of the classes implementing that interface are derived from some base AbstractAction
. But I assume there are some classes that implement that interface, but that do not extend that base class.
Is there a way using IntelliJ to identify such classes? (ideally: using the community edition)
Edit: this is not a duplicate of How to show all parents and subclasses of a class in IntelliJ IDEA?, as I am looking to combine a condition like "implements X and NOT extends Y".