In my projects I am accessing property strings using the Messages.KEY_NAME
to get the value of the property keys.
Now I have to replace all those Messages.KEY_NAME into Properties.getString(KEY_NAME)
function calls.
Is there any trick or shortcut in eclipse to do this?
I want to convert all field accessors of a particular class into function calls passing the field names as the input parameter.
There are more than 1000 properties with key names
Thanks in advance!
EDIT-1
The marked duplicate questions is about direct search and replace string in workspace. My question is about converting static field accessors into function calls where field name is the input string argument for the function.