Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想搜索所有扩展的类Foo并让它们扩展Bar。IDEA 手册说这应该有效:
Foo
Bar
搜索模板
class $Class$ extends Foo { $Stuff$ }
替换模板
class $Class$ extends Bar { $Stuff$ }
where$Stuff$被配置为匹配零到无限次。
$Stuff$
搜索部分工作正常,但替换总是有一个空的类主体。我尝试将$Stuff$' 的最小计数设置为 1 并且仍然匹配所有正确的类,但类主体仍然是空的。
它应该是
class $Class$ extends Foo {}
class $Class$ extends Bar {}
无需添加$Stuff$。
您可以在此处找到示例文档。