I'd like to be notified when any class is created.
For example, I'd like to setup a listener like the following pseudocode:
addListener("onAnyClassCreated", myCallback);
public void function myCallback(Object obj)
{
trace("obj was just created:" + obj.toString());
}
and then for any class created by the JVM for my app, the above "myCallback" function would be called. I could manage this for my own code, but I want it to work with any 3rd party libraries I'm using as well.