Accessing Nested Properties

The nested references are used to access a property through a hierarchy of property names separated by dots (.). We can take a look at a typical example for a Escenic template:

property="homeSection.name"

This will be translated into this Java expression:

getHomeSection().getName()