vote up 2 vote down star
1

I'd like to generate method-chaining setters (setters that return the object being set), like so:

public MyObject setField (Object value) {
    this.field = value;
    return this;
}

This makes it easier to do one-liner instantiations, which I find easier to read:

myMethod (new MyObject ().setField (someValue).setOtherField (someOtherValue));

Can Eclipse's templates be modified to do this? I've changed the content to include return this; but the signature is not changed.

flag

76% accept rate
I personally don't know the answer. However, you may find some results by searching for "fluent" interfaces. en.wikipedia.org/wiki/Fluent_interface – Adam Paynter May 22 at 15:42
Just added potential plugin, as requested (not tested yet) – VonC May 22 at 16:01

2 Answers

vote up 2 vote down check

I confirm eclipse (up to 3.5RC1) does not support "method chaining" setter generation.
It only allows for comment and body customization, not API modification of a setter (meaning a generated setter still return 'void').

May be the plugin Builder Pattern can help here... (not tested though)

Classic way (not "goof" since it will always generate a "void" as return type for setter):
alt text

Vs. new way (Builder Pattern, potentially used as an Eclipse plugin)
alt text

link|flag
I was pretty sure that it wouldn't be core functionality. Any idea about a plugin that does it? – Chris R May 22 at 15:55
vote up 1 vote down

Don't use eclipse myself, but you'll have to change one of the standard templates if you can't find a feature.

It's called method chaining by the way (which might help with a Google search or two).

link|flag
Thanks, I've amended the question to explicitly state that. – Chris R May 22 at 15:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.