| com.tc.object.loaders.BytecodeProvider
BytecodeProvider | public interface BytecodeProvider (Code) | | To be implemented by all class loaders that can load a class that is only represented by a byte array
in memory and can not be found using regular class loading. For example classes that have been generated
on-the-fly.
|
__tc_getBytecodeForClass | public byte[] __tc_getBytecodeForClass(String className)(Code) | | Returns the bytecode for a class with the name specified.
Parameters: className - the name of the class who's bytecode is missing the bytecode for the class or NULL if bytecode is not in the repository |
|
|