"manik.surtani(a)jboss.com" wrote :
| I think having options is always valuable. The JavaBean standard is not a huge deal -
I think people should follow this anyway.
Why ? I never liked the JavaBeans approach, where even internal methods need to call
accessors, like
public int increment() {
int retval=getAge();
setAge(retval +1);
return retval
}
instead of
public int increment() {
return age++;
}
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4091920#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...