The call to eElement.getElementsByTagName(sTag) returns some object. After that, item(0) is called on this object. And so on. In other words, the statement above is equivalent to
SomeObject so = eElement.getElementsByTagName(sTag);
OtherObject oo = so.item(0);
NodeList nlList = oo.getChildNodes();
This technique is called method chaining, and it can be very useful - if not overdone - in making the code more concise and readable.
A special form of it - widely used in some frameworks, e.g. Hibernate - is chaining method calls on the same object, e.g.
SomeObject o = new SomeObject().setFoo(1).setBar("boo").setBaz(42);
This is arguably more compact than
SomeObject o = new SomeObject();
o.setFoo(1);
o.setBar("boo");
o.setBaz(42);
Which you definitely need if you don't have a constructor with the needed parameters. But even if such a constructor is available, one might argue that
SomeObject o = new SomeObject(1, "boo", 42);
is less readable than the method chaining idiom. Alas, Java (unlike C#) has no named parameters in method calls.
eElement? – npinti Jun 28 '12 at 8:29