> If you pass TT2 an object that is just a hash that was "blessed" into some class, and use something like [% object.fieldname1 %] in the template, where fieldname1 matches the name of an accessor and the name of the corresponding key in the hash, what happens? Does it call the accessor to return the data, or pull the data directly from the hash?
It calls the accessor. Doing anything else would violate encapsulation. - Perrin
