up vote 3 down vote favorite
1
share [g+] share [fb]

jQuery uses this pattern. Essentially it involves every method returning a reference to the same object on which the method was called.

myClassInstance
    .DoMethodA()
    .DoMethodB()
    .DoMethodC()
    .CleanUp();

What's this design pattern called?

UPDATE The accepted answer is correct, and here is the link to the wikipedia entry for it - less informative than the link provided in the answer though :P http://en.wikipedia.org/wiki/Method_chaining

link|improve this question

8  
btw it's an idiom, not a design pattern – dfa Jun 6 '09 at 11:07
feedback

4 Answers

up vote 12 down vote accepted

method chaining

link|improve this answer
Your link, it broke. – Will Apr 4 '11 at 13:43
Link repaired... – Joe White Oct 24 '11 at 17:14
feedback

Fluent interface

link|improve this answer
1  
Almost correct - turns out Fluent Interface is an application of method chaining, which is the correct answer. Thanks for the link though; great info there. – Nathan Ridley Jun 6 '09 at 11:05
feedback

its called a Fluent Interface

link|improve this answer
feedback

I call it a train wreck.

link|improve this answer
1  
I call opinionated comments pointless when unaccompanied by any kind of explanation. – Nathan Ridley Jun 6 '09 at 12:15
-1: This pattern is sometimes extremely useful. – Brian MacKay Jun 6 '09 at 13:13
My personal opinion: - It can be useful, but never necessary. It's some sort of syntactic sugar. - It's easy to abuse. It's extremely anti-functional, and relies on methods which only have side-effects (setters, at least 99% of the times). - This particular example is not very "fluent". You can write fluent interfaces without method chaining, and use method chaining in non-fluent interfaces (Java 1.5 has varargs, you don't need to mock them anymore) - The main problem: this is a single line of code, hard to debug. - This has nothing to do with design patterns. – G B Jun 6 '09 at 17:07
feedback

Your Answer

 
or
required, but never shown

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