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 somewhere, ...
I'm using ASM (a bytecode modification library) and it provides access to type names in the bytecode naming format, for example a String field is reported to have the description: Ljava/lang/String
I ...