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.

link|improve this question

59% 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 '09 at 15:42
Just added potential plugin, as requested (not tested yet) – VonC May 22 '09 at 16:01
feedback

4 Answers

up vote 3 down vote accepted

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|improve this answer
I was pretty sure that it wouldn't be core functionality. Any idea about a plugin that does it? – Chris R May 22 '09 at 15:55
feedback

Check out http://code.google.com/p/fluent-builders-generator-eclipse-plugin/

link|improve this answer
Use of the plugin just multiplies the total code volume. Now, instead of the already ridiculous seven lines needed to define a property in Java, we have another half-dozen in the Builder. The best solution may be to write the object construction code in a more expressive language, e.g. Groovy. – kevin cline Feb 10 at 22:07
feedback

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|improve this answer
Thanks, I've amended the question to explicitly state that. – Chris R May 22 '09 at 15:54
feedback

If you're looking for a plug-in that will generate builder pattern, then you might find this blog very useful: http://www.marchwicki.pl/blog/2010/11/building-a-pojo-in-an-elegant-way/.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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