I am trying to bytecode generate a method signature from a java.lang.reflect.Method. The signature(generic type) part of it is tricky as the reflection api to get the type information and transform it into what asm needs is NOT straightforward. Know of any code out there which does this already?
|
|
I am not aware of a tool that does this automatically. I would probably use the org.objectweb.asm.util.ASMifierClassVisitor class to figure out the relationship between the signatures and the ASM API calls. For a class containing this code:
...the tool will generate:
For this code:
...it will generate:
There are notes on method signatures in the FAQ and it helps if you understand Java class nomenclature. Note that the ASM API can also be used to turn a java.lang.reflect.Method into an org.objectweb.asm.commons.Method. Since you can get the class from the java.lang.reflect.Method, you could use ClassVisitors / MethodVisitors to inspect the methods. |
||||
|
|
|
I'd suggest using an existing library like: |
||
|
|
