I have received ownership of a code base that, although very well written, uses a rather bizarre convention:
public void someMethod(String pName, Integer pAge, Context pContext) 
{ 
    ... 
}
I'd like to make the following two changes to the entire code:
public void someMethod(String name, Integer age, Context context) { ... }
- Opening bracket in the same line of the method declaration
 - Use a camelCase name for all parameters of the method, without this weird "p" prefix
 
Can checkstyle help me here? I'm looking but I can't find a way to rename all parameters in all method signatures to something more pleasant.