Tagged Questions

0
votes
7answers
116 views

What determines the execution order of methods in jQuery chains?

HTML Code <div id="foo"> <h1>foo</h1> <p>Pellentesque habitant morbi tristique.</p> </div> <div id="bar"> <h1>bar</h1> </div> …
0
votes
4answers
180 views

JavaScript method chaining challenge

(This question is not really restricted to the language so please feel free to submit solution in other languages too.) I was just wondering if it would be possible to write something like this in …
11
votes
9answers
347 views

Method chaining - why is it a good practice, or not?

Method chaining is the practice of object methods returning the object itself in order for the result to be called for another method. Like this: …
2
votes
6answers
185 views

Is there a nice simple & elegant way to make ICollection more fluent in C#?

Example: I would like to have the Add method of ICollection of a custom collection class to implement method chaining and fluent languages so I can do this: …
4
votes
5answers
203 views

Method chaining + inheritance don’t play well together? (Java)

This question has been asked in a C++ context but I'm curious about Java. The concerns about virtual methods don't apply (I think), but if you have this situation: abstract class Pet { private …
6
votes
15answers
689 views

Method chaining + inheritance don’t play well together?

Consider: // member data omitted for brevity // assume that "setAngle" needs to be implemented separately // in Label and Image, and that Button does need to inherit // Label, rather than, say, …
1
vote
5answers
145 views

PHP Method Chains - Reflecting?

Is it possible to reflect upon a chain of method calls to determine at what point you are in the chain of calls? At the very least, is it possible to discern whether a method is the last call in the …
2
votes
2answers
142 views

Can Eclipse generate method-chaining setters

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 …