Blocks :
|
Problem: we need to redefine class w/ given name from existing byte code. loadClass first tries to load class using parent or bootstrap classloader and doesn't really reload class as new. Solution: override loadClass to break delegation for given className.
|