Using structural search in Intellij IDEA, how should the search template be if i want to find all the classes that implement an interface but do not extend another class? The templates separately are:
class $Class$ implements $Interface$ {}
and
class $Class$ extends $Parent$ {}
setting minimum and maximum 1,1 and 0,0 respectively.
I tried something similar to this question without success:
IntelliJ Structural Search to find classes that implement A but not B