我在Eclipse IDE中遇到了重构问题。
我有这个界面方法:
List<String> evaluateAllPoi(boolean pIsVerified, List<String> pAllNames, List<String> pAllComment);
该方法对Junit具有较高的测试覆盖率(至少90次测试)。
我想通过重构将第一个boolean
参数移到方法签名的末尾,所以我得到:
List<String> evaluateAllPoi(List<String> pAllNames, List<String> pAllComment,boolean pIsVerified);
我非常确定Eclipse提供了一种轻松实现这一目标的可能性,而无需手动更改每个调用,但目前我没有找到/看到它。
你能给我一个提示吗?
答案 0 :(得分:6)
是的,Eclipse确实为此提供了便利。
答案 1 :(得分:2)
在重构菜单中使用“change method signature”;使用向上/向下按钮重新排序参数。