Is it possible to dig up a classes name from bytecode which is formed from the class\' source code?
The situation is this: I get a classes bytecode remotely from so
I think you can use the ClassLoader.defineClass method, in a subclass of ClassLoader, to get the Class object for a given bytecode. (not tested)