|
: 10 : 10 : 0 |
I sometimes have custom objects that are in a simple hierarchy. Scope prevents me from identifying which object may "own" or be parent of the current object that is running. Would be good to be able to call a method available to any custom class and call it like this
Set parentObj = object.getParentObject
Returns nothing if does not exists or returns the object that is the owner of the current object. Allows me to traverse objects hierarchically would actually reduce complexity, rather than carry data in sub-objects to get information.
This is some relationship to the linked idea, but I'm really talking about meta-methods of objects.
|