Package org.spongepowered.asm.util
Class Bytecode.DelegateInitialiser
- java.lang.Object
-
- org.spongepowered.asm.util.Bytecode.DelegateInitialiser
-
- Enclosing class:
- Bytecode
public static class Bytecode.DelegateInitialiser extends java.lang.ObjectInformation bundle returned fromBytecode.findDelegateInit(org.objectweb.asm.tree.MethodNode, java.lang.String, java.lang.String)
-
-
Field Summary
Fields Modifier and Type Field Description org.objectweb.asm.tree.MethodInsnNodeinsnConstructor invocationbooleanisPresentTrue if the invocation is found, false if no delegate constructor was found (false for DelegateInitialiser.NONE)booleanisSuperTrue if the invocation is a super call, false if it's a call to another ctor in the same classstatic Bytecode.DelegateInitialiserNONENo delegate initialiser found
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
NONE
public static final Bytecode.DelegateInitialiser NONE
No delegate initialiser found
-
insn
public final org.objectweb.asm.tree.MethodInsnNode insn
Constructor invocation
-
isSuper
public final boolean isSuper
True if the invocation is a super call, false if it's a call to another ctor in the same class
-
isPresent
public final boolean isPresent
True if the invocation is found, false if no delegate constructor was found (false for DelegateInitialiser.NONE)
-
-