I haven\'t been successful in figuring out how to wrap each method call in Eclipse. For example, I have this:
someObject.A().B().C();
If you are willing to do the formatting of those segments yourself, you can prevent eclipse from reformatting those segments by using:
// @formatter:off
...
// @formatter:on
You might need to enable this in your preferences: http://archive.eclipse.org/eclipse/downloads/drops/R-3.6-201006080911/eclipse-news-part2.html#JavaFormatter
See also: How to turn off the Eclipse code formatter for certain sections of Java code?