如何查找带有尾随评论的所有字段
How to find all fields with a trailing comment
我使用 IntelliJ IDEA,它有一个叫做结构搜索的漂亮功能。我想用它来查找所有 类 中末尾有注释的所有字段,如下所示:
class Thing {
double x; // arbitrary comment (any text goes here)
}
到目前为止,我尝试过的似乎都没有用。
尝试以下结构搜索字符串:
@Modifier("Instance") $FieldType$ $Field$ = $Init$; // $Comment$
- Set
Occurrences Count
to 1, 1
for all variables except $Init$
,
to 0, 1
(optional).
如果您还需要静态字段:
$FieldType$ $Field$ = $Init$; // $Comment$
- Set
Occurrences Count
to 1, 1
for all variables except $Init$
,
to 0, 1
(optional).
- Set
Field
's Script Constraint
to Field instanceof com.intellij.psi.PsiField
(can be defined on Complete Match
too, shouldn't matter).
我使用 IntelliJ IDEA,它有一个叫做结构搜索的漂亮功能。我想用它来查找所有 类 中末尾有注释的所有字段,如下所示:
class Thing {
double x; // arbitrary comment (any text goes here)
}
到目前为止,我尝试过的似乎都没有用。
尝试以下结构搜索字符串:
@Modifier("Instance") $FieldType$ $Field$ = $Init$; // $Comment$
- Set
Occurrences Count
to1, 1
for all variables except$Init$
, to0, 1
(optional).
如果您还需要静态字段:
$FieldType$ $Field$ = $Init$; // $Comment$
- Set
Occurrences Count
to1, 1
for all variables except$Init$
, to0, 1
(optional).- Set
Field
'sScript Constraint
toField instanceof com.intellij.psi.PsiField
(can be defined onComplete Match
too, shouldn't matter).