Class Advice.Dispatcher.RelocationHandler.Relocation.ForLabel

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private org.objectweb.asm.Label label
      The label to jump to.
    • Constructor Summary

      Constructors 
      Constructor Description
      ForLabel​(org.objectweb.asm.Label label)
      Creates a new relocation for an unconditional jump to a given label.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void apply​(org.objectweb.asm.MethodVisitor methodVisitor)
      Applies this relocator.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • label

        private final org.objectweb.asm.Label label
        The label to jump to.
    • Constructor Detail

      • ForLabel

        public ForLabel​(org.objectweb.asm.Label label)
        Creates a new relocation for an unconditional jump to a given label.
        Parameters:
        label - The label to jump to.