JavaProgrammingConcepts

From Wiki RB4
Revision as of 19:25, 12 June 2007 by UweHeuer (talk | contribs) (New page: ==Method Chaining== This style is more popular in Smalltalk. The called method returns the called object, so it the next method can be called directly. Example: new Configuration().config...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Method Chaining[edit]

This style is more popular in Smalltalk. The called method returns the called object, so it the next method can be called directly. Example:

new Configuration().configure().buildSessionFactory();