Is there a quick way to replace this:
public static String ACCESSDENIED = Resources.strings.getString(Resources.ACCESS_DENIED);
with:
public stattic String getAccessDenied(){
return Resources.strings.getString(Resources.ACCESS_DENIED);
}
I need to replace all static references to getters in about 100 variables.