Posted By:
WarnerJan_Veldhuis
Posted On:
Sunday, November 26, 2006 01:53 PM
I would change the name of the field to name instead of _name. That would do the trick. if you have trouble identifying local variables (parameters) vs object variables, prefix the field with
this..
public void setName( String name) {
this.name = name;
}
Who invented the underscore anyway???