public abstract class net.sf.cglib.reflect.MethodDelegate
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: net.sf.cglib.reflect.MethodDelegate
  super_class: java.lang.Object
{
  private static final net.sf.cglib.reflect.MethodDelegate$MethodDelegateKey KEY_FACTORY;
    descriptor: Lnet/sf/cglib/reflect/MethodDelegate$MethodDelegateKey;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  protected java.lang.Object target;
    descriptor: Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.String eqMethod;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 110
            ldc Lnet/sf/cglib/reflect/MethodDelegate$MethodDelegateKey;
            getstatic net.sf.cglib.core.KeyFactory.CLASS_BY_NAME:Lnet/sf/cglib/core/Customizer;
            invokestatic net.sf.cglib.core.KeyFactory.create:(Ljava/lang/Class;Lnet/sf/cglib/core/Customizer;)Lnet/sf/cglib/core/KeyFactory;
            checkcast net.sf.cglib.reflect.MethodDelegate$MethodDelegateKey
         1: .line 109
            putstatic net.sf.cglib.reflect.MethodDelegate.KEY_FACTORY:Lnet/sf/cglib/reflect/MethodDelegate$MethodDelegateKey;
         2: .line 110
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.sf.cglib.reflect.MethodDelegate this
         0: .line 108
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // net.sf.cglib.reflect.MethodDelegate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/sf/cglib/reflect/MethodDelegate;

  public static net.sf.cglib.reflect.MethodDelegate createStatic(java.lang.Class, java.lang.String, java.lang.Class);
    descriptor: (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Lnet/sf/cglib/reflect/MethodDelegate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // java.lang.Class targetClass
        start local 1 // java.lang.String methodName
        start local 2 // java.lang.Class iface
         0: .line 120
            new net.sf.cglib.reflect.MethodDelegate$Generator
            dup
            invokespecial net.sf.cglib.reflect.MethodDelegate$Generator.<init>:()V
            astore 3 /* gen */
        start local 3 // net.sf.cglib.reflect.MethodDelegate$Generator gen
         1: .line 121
            aload 3 /* gen */
            aload 0 /* targetClass */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.setTargetClass:(Ljava/lang/Class;)V
         2: .line 122
            aload 3 /* gen */
            aload 1 /* methodName */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.setMethodName:(Ljava/lang/String;)V
         3: .line 123
            aload 3 /* gen */
            aload 2 /* iface */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.setInterface:(Ljava/lang/Class;)V
         4: .line 124
            aload 3 /* gen */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.create:()Lnet/sf/cglib/reflect/MethodDelegate;
            areturn
        end local 3 // net.sf.cglib.reflect.MethodDelegate$Generator gen
        end local 2 // java.lang.Class iface
        end local 1 // java.lang.String methodName
        end local 0 // java.lang.Class targetClass
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0  targetClass  Ljava/lang/Class;
            0    5     1   methodName  Ljava/lang/String;
            0    5     2        iface  Ljava/lang/Class;
            1    5     3          gen  Lnet/sf/cglib/reflect/MethodDelegate$Generator;
    MethodParameters:
             Name  Flags
      targetClass  
      methodName   
      iface        

  public static net.sf.cglib.reflect.MethodDelegate create(java.lang.Object, java.lang.String, java.lang.Class);
    descriptor: (Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Class;)Lnet/sf/cglib/reflect/MethodDelegate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // java.lang.Object target
        start local 1 // java.lang.String methodName
        start local 2 // java.lang.Class iface
         0: .line 128
            new net.sf.cglib.reflect.MethodDelegate$Generator
            dup
            invokespecial net.sf.cglib.reflect.MethodDelegate$Generator.<init>:()V
            astore 3 /* gen */
        start local 3 // net.sf.cglib.reflect.MethodDelegate$Generator gen
         1: .line 129
            aload 3 /* gen */
            aload 0 /* target */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.setTarget:(Ljava/lang/Object;)V
         2: .line 130
            aload 3 /* gen */
            aload 1 /* methodName */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.setMethodName:(Ljava/lang/String;)V
         3: .line 131
            aload 3 /* gen */
            aload 2 /* iface */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.setInterface:(Ljava/lang/Class;)V
         4: .line 132
            aload 3 /* gen */
            invokevirtual net.sf.cglib.reflect.MethodDelegate$Generator.create:()Lnet/sf/cglib/reflect/MethodDelegate;
            areturn
        end local 3 // net.sf.cglib.reflect.MethodDelegate$Generator gen
        end local 2 // java.lang.Class iface
        end local 1 // java.lang.String methodName
        end local 0 // java.lang.Object target
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0      target  Ljava/lang/Object;
            0    5     1  methodName  Ljava/lang/String;
            0    5     2       iface  Ljava/lang/Class;
            1    5     3         gen  Lnet/sf/cglib/reflect/MethodDelegate$Generator;
    MethodParameters:
            Name  Flags
      target      
      methodName  
      iface       

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // net.sf.cglib.reflect.MethodDelegate this
        start local 1 // java.lang.Object obj
         0: .line 136
            aload 1 /* obj */
            checkcast net.sf.cglib.reflect.MethodDelegate
            astore 2 /* other */
        start local 2 // net.sf.cglib.reflect.MethodDelegate other
         1: .line 137
            aload 2 /* other */
            ifnull 2
            aload 0 /* this */
            getfield net.sf.cglib.reflect.MethodDelegate.target:Ljava/lang/Object;
            aload 2 /* other */
            getfield net.sf.cglib.reflect.MethodDelegate.target:Ljava/lang/Object;
            if_acmpne 2
            aload 0 /* this */
            getfield net.sf.cglib.reflect.MethodDelegate.eqMethod:Ljava/lang/String;
            aload 2 /* other */
            getfield net.sf.cglib.reflect.MethodDelegate.eqMethod:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals: net.sf.cglib.reflect.MethodDelegate
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // net.sf.cglib.reflect.MethodDelegate other
        end local 1 // java.lang.Object obj
        end local 0 // net.sf.cglib.reflect.MethodDelegate this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lnet/sf/cglib/reflect/MethodDelegate;
            0    3     1    obj  Ljava/lang/Object;
            1    3     2  other  Lnet/sf/cglib/reflect/MethodDelegate;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // net.sf.cglib.reflect.MethodDelegate this
         0: .line 141
            aload 0 /* this */
            getfield net.sf.cglib.reflect.MethodDelegate.target:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
            aload 0 /* this */
            getfield net.sf.cglib.reflect.MethodDelegate.eqMethod:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            ixor
            ireturn
        end local 0 // net.sf.cglib.reflect.MethodDelegate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/sf/cglib/reflect/MethodDelegate;

  public java.lang.Object getTarget();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.sf.cglib.reflect.MethodDelegate this
         0: .line 145
            aload 0 /* this */
            getfield net.sf.cglib.reflect.MethodDelegate.target:Ljava/lang/Object;
            areturn
        end local 0 // net.sf.cglib.reflect.MethodDelegate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/sf/cglib/reflect/MethodDelegate;

  public abstract net.sf.cglib.reflect.MethodDelegate newInstance(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lnet/sf/cglib/reflect/MethodDelegate;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      target  
}
SourceFile: "MethodDelegate.java"
NestMembers:
  net.sf.cglib.reflect.MethodDelegate$Generator  net.sf.cglib.reflect.MethodDelegate$MethodDelegateKey
InnerClasses:
  public Generator = net.sf.cglib.reflect.MethodDelegate$Generator of net.sf.cglib.reflect.MethodDelegate
  abstract MethodDelegateKey = net.sf.cglib.reflect.MethodDelegate$MethodDelegateKey of net.sf.cglib.reflect.MethodDelegate