The [Law of Demeter][1] says you should use *only one dot*:

>  For many modern object oriented languages that use a dot as field identifier, the law can be stated simply as "use only one dot". That is, the code "a.b.Method()" breaks the law where "a.Method()" does not.

Of course, this is not always practical. But long strings of dot-separated identifiers violate accepted practice.

  [1]: http://en.wikipedia.org/wiki/Law_of_Demeter