如何在调用层次结构中一直向上引入新参数?

How do I introduce a new parameter all the way up the call hierarchy?

有时我想在调用堆栈的底部引入一个新参数并将其一直传递到调用堆栈的顶部。这很烦人,因为我必须以相同的方式一遍又一遍地使用 "extract parameter" 重构。有没有捷径可以在调用堆栈中一直执行此操作?

这里有一些关于提取参数主题的文档:https://www.jetbrains.com/idea/help/extract-parameter-in-java.html

此处有一篇关于该主题的博客文章:http://blog.jetbrains.com/idea/2015/02/new-refactorings-around-the-call-hierarchy/