| Modifier and Type | Method | Description |
|---|---|---|
static Method |
Method.getMethod(java.lang.reflect.Constructor<?> constructor) |
Creates a new
Method. |
static Method |
Method.getMethod(java.lang.reflect.Method method) |
Creates a new
Method. |
static Method |
Method.getMethod(java.lang.String method) |
Returns a
Method corresponding to the given Java method declaration. |
static Method |
Method.getMethod(java.lang.String method,
boolean defaultPackage) |
Returns a
Method corresponding to the given Java method declaration. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
GeneratorAdapter.invokeConstructor(org.objectweb.asm.Type type,
Method method) |
Generates the instruction to invoke a constructor.
|
void |
GeneratorAdapter.invokeInterface(org.objectweb.asm.Type owner,
Method method) |
Generates the instruction to invoke an interface method.
|
void |
GeneratorAdapter.invokeStatic(org.objectweb.asm.Type owner,
Method method) |
Generates the instruction to invoke a static method.
|
void |
GeneratorAdapter.invokeVirtual(org.objectweb.asm.Type owner,
Method method) |
Generates the instruction to invoke a normal method.
|
| Constructor | Description |
|---|---|
GeneratorAdapter(int access,
Method method,
java.lang.String signature,
org.objectweb.asm.Type[] exceptions,
org.objectweb.asm.ClassVisitor classVisitor) |
Constructs a new
GeneratorAdapter. |
GeneratorAdapter(int access,
Method method,
org.objectweb.asm.MethodVisitor methodVisitor) |
Constructs a new
GeneratorAdapter. |
Copyright © 2023. All rights reserved.