Class Bytecode.DelegateInitialiser

java.lang.Object
org.spongepowered.asm.util.Bytecode.DelegateInitialiser
Enclosing class:
Bytecode

public static class Bytecode.DelegateInitialiser extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final org.objectweb.asm.tree.MethodInsnNode
    Constructor invocation
    final boolean
    True if the invocation is found, false if no delegate constructor was found (false for DelegateInitialiser.NONE)
    final boolean
    True if the invocation is a super call, false if it's a call to another ctor in the same class
    No delegate initialiser found
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • 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)
  • Method Details