| Modifier and Type | Method and Description |
|---|---|
static Method |
Method.getMethod(Constructor<?> constructor)
Creates a new
Method. |
static Method |
Method.getMethod(Method method)
Creates a new
Method. |
static Method |
Method.getMethod(String method)
Returns a
Method corresponding to the given Java method declaration. |
static Method |
Method.getMethod(String method,
boolean defaultPackage)
Returns a
Method corresponding to the given Java method declaration. |
| Modifier and Type | Method and 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 and Description |
|---|
GeneratorAdapter(int access,
Method method,
org.objectweb.asm.MethodVisitor methodVisitor)
Constructs a new
GeneratorAdapter. |
GeneratorAdapter(int access,
Method method,
String signature,
org.objectweb.asm.Type[] exceptions,
org.objectweb.asm.ClassVisitor classVisitor)
Constructs a new
GeneratorAdapter. |
Copyright © 2024. All rights reserved.