I prefer the parameter for my set methods to be in the style "new" + the
property name.  i.e.

public void setName(String newName) {
  this.name = newName;
}

rather than 

public void setName(String name) {
  this.name = name;
}

Can this be made an option?

Kirk


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to