【发布时间】:2015-04-01 10:04:53
【问题描述】:
在我 15 年的 java 项目中,不遵守标准 Java 约定,变量名的首字母经常大写。
我想将我的项目重构为变量名称的首字母小写,尤其是在方法签名中:
public void creerProfil(String CodeProfil, Profil ProfilACreer) throws Exception {
...
}
应该是:
public void creerProfil(String codeProfil, Profil profilACreer) throws Exception {
...
}
如果你有任何插件可以做到这一点,我会很高兴听到它:)
【问题讨论】:
标签: java eclipse plugins refactoring