Eclipse - find all classes that extend interface

前端 未结 7 573
情书的邮戳
情书的邮戳 2021-02-05 05:06

We have an interface that has a child interface. Ie:

public interface GenCalculator extends Serializable {}

public interface SpecialCalculator extends GenCalcu         


        
7条回答
  •  清酒与你
    2021-02-05 05:21

    You can't do it in only one search.

    May be you could use the "Text Search" option and wildcards, something like searching for "*s YourInterfaceName" (trying to catch "extends YourInterfaceName" and "implements YourInterfaceName") but is too tricky.

提交回复
热议问题