ObjectVisitor
Description
This represents any Object implementing visit ( Object obj ) and track ( ) methods.
Methods
bool | track ( ) |
bool | visit ( Object obj ) |
Method Descriptions
bool visit ( Object obj ):
Sequentially called with every existing Object as parameter. Loop will be aborted when returning false.
bool track ( ):
Called when visit loop is aborted or has finished. If this returns true the next time this same visitor is used with the AccessorApi it will skip all previously visited Object.