My recollection is that by default Dolphin automatically considers
straight instance variable accessors to be aspects. If there is any
code beyond just getting/setting an instance variable then it isn't
assumed to be just an accessor. A getter method that performs lazy
initialization won't be seen as a simple getter because of the extra code.
See class side implementations of publishedAspectsOfInstances to see how
to add aspects.
Chris Demers