根据主题,我试图在结构上搜索使用特定注释和特定返回类型注释的所有方法。
更清楚地说,如果我有如下方法:
@MyAnnotation
public String myMethod1(){}
和
@MyAnnotation
public Integer myMethod2(){}
我想找到一种在 IntelliJ 中制定结构搜索的方法,以查找例如“所有带有注释@MyAnnotation
和返回类型的方法String
”,并且这样的搜索只会返回myMethod1()
.
我正在使用 IntelliJ 13 Ultimate。
谢谢。