java - Eclipse how to refactor variable names? -


in 15 years old java project, standard java conventions not respected, , first letter of variable names capitalized.

i refactor project lower case first letter of variables names, in method signatures :

public void creerprofil(string codeprofil, profil profilacreer) throws exception { ... } 

should :

public void creerprofil(string codeprofil, profil profilacreer) throws exception { ... } 

if have idea of plugin that, glad hear :)

if on windows platform use alt+shift+r or on mac use command+option+r. refactor occurences that variable used.

to list of shortcuts available in eclipse, use ctrl+shift+l in windows , command+shift+l in mac.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -