public interface IClassBytecodeProvider
| Modifier and Type | Method and Description |
|---|---|
org.objectweb.asm.tree.ClassNode |
getClassNode(java.lang.String name)
Retrieve transformed class as an ASM tree
|
org.objectweb.asm.tree.ClassNode |
getClassNode(java.lang.String name,
boolean runTransformers)
Retrieve transformed class as an ASM tree
|
org.objectweb.asm.tree.ClassNode getClassNode(java.lang.String name)
throws java.lang.ClassNotFoundException,
java.io.IOException
name - full class namejava.lang.ClassNotFoundException - if class not foundjava.io.IOException - propagatedorg.objectweb.asm.tree.ClassNode getClassNode(java.lang.String name,
boolean runTransformers)
throws java.lang.ClassNotFoundException,
java.io.IOException
name - full class namerunTransformers - true to run transformers when loading the classjava.lang.ClassNotFoundException - if class not foundjava.io.IOException - propagated