Represents an "accessor" into an object. An accessor is basically a dot separated list
of method names, such as: myObj.id.name.
All of the methods referenced must have no arguments and be "public" in the referring class.
You can use either the actual method name or the JavaBean naming convention.
Thus: myObj.id.name might also be represented as: getMyObj.getId.getName.