Hi Frederic,

It's not a big deal to me not to use method chaining in my beans, I much prefer
having the beans work properly with templates.

I typically use both:
* a setter with a void return type (void setFoo(String value))
* a regular getter (String getFoo())
* a chainable setter (MyBean foo(String value))

The chainable setter is that simple implemented as:
public MyBean foo(String value) {
    setFoo(value);
    return this;
}

Best regards,

Geert
--
Geert Bevin             Uwyn bvba               GTalk: [EMAIL PROTECTED]
"Use what you need"     Avenue de Scailmont 34  Skype: gbevin
http://www.uwyn.com     7170 Manage, Belgium      AIM: geertbevin
gbevin at uwyn dot com  Tel: +32 64 84 80 03   Mobile: +32 477 302 599

PGP Fingerprint : 4E21 6399 CD9E A384 6619  719A C8F4 D40D 309F D6A9
Public PGP key  : available at servers pgp.mit.edu, wwwkeys.pgp.net


_______________________________________________
Rife-users mailing list
[email protected]
http://lists.uwyn.com/mailman/listinfo/rife-users

Reply via email to