如何在没有特定参数集的情况下找到用特定注释注释的方法?
How to find method annotated with a specific annotation without a specific argument set?
示例:
我想要 :
的所有实例
@Test
$MethodType$ $MethodName$($ParameterType$ $ParameterName$);
但不是
@Test( group="wazoo")
$MethodType$ $MethodName$($ParameterType$ $ParameterName$);
由于 SSR 中的错误,目前这有点棘手,但可以使用一些脚本。
搜索模式:
@$Annotation$
$MethodType$ $MethodName$($ParameterType$ $ParameterName$);
单击 Edit variables...
并编辑 Annotation
:
Text/regexp: Test
脚本文本:__context__.parent.parameterList.attributes.length == 0
示例:
我想要 :
的所有实例@Test
$MethodType$ $MethodName$($ParameterType$ $ParameterName$);
但不是
@Test( group="wazoo")
$MethodType$ $MethodName$($ParameterType$ $ParameterName$);
由于 SSR 中的错误,目前这有点棘手,但可以使用一些脚本。
搜索模式:
@$Annotation$
$MethodType$ $MethodName$($ParameterType$ $ParameterName$);
单击 Edit variables...
并编辑 Annotation
:
Text/regexp: Test
脚本文本:__context__.parent.parameterList.attributes.length == 0