public abstract class com.sun.org.apache.bcel.internal.classfile.Attribute implements java.lang.Cloneable, com.sun.org.apache.bcel.internal.classfile.Node, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.sun.org.apache.bcel.internal.classfile.Attribute
  super_class: java.lang.Object
{
  protected int name_index;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int length;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected byte tag;
    descriptor: B
    flags: (0x0004) ACC_PROTECTED

  protected com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool;
    descriptor: Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
    flags: (0x0004) ACC_PROTECTED

  private static java.util.HashMap readers;
    descriptor: Ljava/util/HashMap;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 85
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putstatic com.sun.org.apache.bcel.internal.classfile.Attribute.readers:Ljava/util/HashMap;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(byte, int, int, com.sun.org.apache.bcel.internal.classfile.ConstantPool);
    descriptor: (BIILcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
        start local 1 // byte tag
        start local 2 // int name_index
        start local 3 // int length
        start local 4 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            iload 1 /* tag */
            putfield com.sun.org.apache.bcel.internal.classfile.Attribute.tag:B
         2: .line 59
            aload 0 /* this */
            iload 2 /* name_index */
            putfield com.sun.org.apache.bcel.internal.classfile.Attribute.name_index:I
         3: .line 60
            aload 0 /* this */
            iload 3 /* length */
            putfield com.sun.org.apache.bcel.internal.classfile.Attribute.length:I
         4: .line 61
            aload 0 /* this */
            aload 4 /* constant_pool */
            putfield com.sun.org.apache.bcel.internal.classfile.Attribute.constant_pool:Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
         5: .line 62
            return
        end local 4 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
        end local 3 // int length
        end local 2 // int name_index
        end local 1 // byte tag
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            0    6     1            tag  B
            0    6     2     name_index  I
            0    6     3         length  I
            0    6     4  constant_pool  Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
    MethodParameters:
               Name  Flags
      tag            
      name_index     
      length         
      constant_pool  

  public abstract void accept(com.sun.org.apache.bcel.internal.classfile.Visitor);
    descriptor: (Lcom/sun/org/apache/bcel/internal/classfile/Visitor;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      v     

  public void dump(java.io.DataOutputStream);
    descriptor: (Ljava/io/DataOutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
        start local 1 // java.io.DataOutputStream file
         0: .line 81
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Attribute.name_index:I
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         1: .line 82
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Attribute.length:I
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
         2: .line 83
            return
        end local 1 // java.io.DataOutputStream file
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            0    3     1  file  Ljava/io/DataOutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      file  

  public static void addAttributeReader(java.lang.String, com.sun.org.apache.bcel.internal.classfile.AttributeReader);
    descriptor: (Ljava/lang/String;Lcom/sun/org/apache/bcel/internal/classfile/AttributeReader;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.lang.String name
        start local 1 // com.sun.org.apache.bcel.internal.classfile.AttributeReader r
         0: .line 95
            getstatic com.sun.org.apache.bcel.internal.classfile.Attribute.readers:Ljava/util/HashMap;
            aload 0 /* name */
            aload 1 /* r */
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 96
            return
        end local 1 // com.sun.org.apache.bcel.internal.classfile.AttributeReader r
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  name  Ljava/lang/String;
            0    2     1     r  Lcom/sun/org/apache/bcel/internal/classfile/AttributeReader;
    MethodParameters:
      Name  Flags
      name  
      r     

  public static void removeAttributeReader(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String name
         0: .line 103
            getstatic com.sun.org.apache.bcel.internal.classfile.Attribute.readers:Ljava/util/HashMap;
            aload 0 /* name */
            invokevirtual java.util.HashMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 104
            return
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public static final com.sun.org.apache.bcel.internal.classfile.Attribute readAttribute(java.io.DataInputStream, com.sun.org.apache.bcel.internal.classfile.ConstantPool);
    descriptor: (Ljava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // java.io.DataInputStream file
        start local 1 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
         0: .line 126
            iconst_m1
            istore 6 /* tag */
        start local 6 // byte tag
         1: .line 129
            aload 0 /* file */
            invokevirtual java.io.DataInputStream.readUnsignedShort:()I
            istore 4 /* name_index */
        start local 4 // int name_index
         2: .line 130
            aload 1 /* constant_pool */
            iload 4 /* name_index */
         3: .line 131
            iconst_1
         4: .line 130
            invokevirtual com.sun.org.apache.bcel.internal.classfile.ConstantPool.getConstant:(IB)Lcom/sun/org/apache/bcel/internal/classfile/Constant;
            checkcast com.sun.org.apache.bcel.internal.classfile.ConstantUtf8
            astore 2 /* c */
        start local 2 // com.sun.org.apache.bcel.internal.classfile.ConstantUtf8 c
         5: .line 132
            aload 2 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.ConstantUtf8.getBytes:()Ljava/lang/String;
            astore 3 /* name */
        start local 3 // java.lang.String name
         6: .line 135
            aload 0 /* file */
            invokevirtual java.io.DataInputStream.readInt:()I
            istore 5 /* length */
        start local 5 // int length
         7: .line 138
            iconst_0
            istore 7 /* i */
        start local 7 // byte i
         8: goto 13
         9: .line 139
      StackMap locals: java.io.DataInputStream com.sun.org.apache.bcel.internal.classfile.ConstantPool com.sun.org.apache.bcel.internal.classfile.ConstantUtf8 java.lang.String int int int int
      StackMap stack:
            aload 3 /* name */
            getstatic com.sun.org.apache.bcel.internal.Constants.ATTRIBUTE_NAMES:[Ljava/lang/String;
            iload 7 /* i */
            aaload
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 140
            iload 7 /* i */
            istore 6 /* tag */
        11: .line 141
            goto 14
        12: .line 138
      StackMap locals:
      StackMap stack:
            iload 7 /* i */
            iconst_1
            iadd
            i2b
            istore 7 /* i */
      StackMap locals:
      StackMap stack:
        13: iload 7 /* i */
            bipush 13
            if_icmplt 9
        end local 7 // byte i
        14: .line 146
      StackMap locals:
      StackMap stack:
            iload 6 /* tag */
            tableswitch { // -1 - 12
                   -1: 15
                    0: 20
                    1: 19
                    2: 21
                    3: 22
                    4: 23
                    5: 24
                    6: 26
                    7: 27
                    8: 28
                    9: 29
                   10: 30
                   11: 31
                   12: 25
              default: 32
          }
        15: .line 148
      StackMap locals:
      StackMap stack:
            getstatic com.sun.org.apache.bcel.internal.classfile.Attribute.readers:Ljava/util/HashMap;
            aload 3 /* name */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.sun.org.apache.bcel.internal.classfile.AttributeReader
            astore 7 /* r */
        start local 7 // com.sun.org.apache.bcel.internal.classfile.AttributeReader r
        16: .line 150
            aload 7 /* r */
            ifnull 18
        17: .line 151
            aload 7 /* r */
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokeinterface com.sun.org.apache.bcel.internal.classfile.AttributeReader.createAttribute:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            areturn
        18: .line 153
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.AttributeReader
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.Unknown
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Unknown.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        end local 7 // com.sun.org.apache.bcel.internal.classfile.AttributeReader r
        19: .line 156
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.ConstantValue
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.ConstantValue.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        20: .line 159
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.SourceFile
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.SourceFile.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        21: .line 162
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.Code
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Code.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        22: .line 165
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.ExceptionTable
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.ExceptionTable.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        23: .line 168
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.LineNumberTable
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.LineNumberTable.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        24: .line 171
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.LocalVariableTable
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.LocalVariableTable.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        25: .line 174
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.LocalVariableTypeTable
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.LocalVariableTypeTable.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        26: .line 177
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.InnerClasses
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.InnerClasses.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        27: .line 180
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.Synthetic
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Synthetic.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        28: .line 183
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.Deprecated
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Deprecated.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        29: .line 186
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.PMGClass
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.PMGClass.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        30: .line 189
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.Signature
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Signature.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        31: .line 192
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.bcel.internal.classfile.StackMap
            dup
            iload 4 /* name_index */
            iload 5 /* length */
            aload 0 /* file */
            aload 1 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.StackMap.<init>:(IILjava/io/DataInputStream;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
            areturn
        32: .line 195
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Ooops! default case reached."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // byte tag
        end local 5 // int length
        end local 4 // int name_index
        end local 3 // java.lang.String name
        end local 2 // com.sun.org.apache.bcel.internal.classfile.ConstantUtf8 c
        end local 1 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
        end local 0 // java.io.DataInputStream file
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   33     0           file  Ljava/io/DataInputStream;
            0   33     1  constant_pool  Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
            5   33     2              c  Lcom/sun/org/apache/bcel/internal/classfile/ConstantUtf8;
            6   33     3           name  Ljava/lang/String;
            2   33     4     name_index  I
            7   33     5         length  I
            1   33     6            tag  B
            8   14     7              i  B
           16   19     7              r  Lcom/sun/org/apache/bcel/internal/classfile/AttributeReader;
    Exceptions:
      throws java.io.IOException, com.sun.org.apache.bcel.internal.classfile.ClassFormatException
    MethodParameters:
               Name  Flags
      file           
      constant_pool  

  public final int getLength();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
         0: .line 202
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Attribute.length:I
            ireturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;

  public final void setLength(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
        start local 1 // int length
         0: .line 208
            aload 0 /* this */
            iload 1 /* length */
            putfield com.sun.org.apache.bcel.internal.classfile.Attribute.length:I
         1: .line 209
            return
        end local 1 // int length
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            0    2     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public final void setNameIndex(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
        start local 1 // int name_index
         0: .line 215
            aload 0 /* this */
            iload 1 /* name_index */
            putfield com.sun.org.apache.bcel.internal.classfile.Attribute.name_index:I
         1: .line 216
            return
        end local 1 // int name_index
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            0    2     1  name_index  I
    MethodParameters:
            Name  Flags
      name_index  

  public final int getNameIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
         0: .line 221
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Attribute.name_index:I
            ireturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;

  public final byte getTag();
    descriptor: ()B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
         0: .line 227
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Attribute.tag:B
            ireturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;

  public final com.sun.org.apache.bcel.internal.classfile.ConstantPool getConstantPool();
    descriptor: ()Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
         0: .line 233
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Attribute.constant_pool:Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;

  public final void setConstantPool(com.sun.org.apache.bcel.internal.classfile.ConstantPool);
    descriptor: (Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
        start local 1 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
         0: .line 240
            aload 0 /* this */
            aload 1 /* constant_pool */
            putfield com.sun.org.apache.bcel.internal.classfile.Attribute.constant_pool:Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
         1: .line 241
            return
        end local 1 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            0    2     1  constant_pool  Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
    MethodParameters:
               Name  Flags
      constant_pool  

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
         0: .line 250
            aconst_null
            astore 1 /* o */
        start local 1 // java.lang.Object o
         1: .line 253
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            astore 1 /* o */
         2: .line 254
            goto 5
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Attribute java.lang.Object
      StackMap stack: java.lang.CloneNotSupportedException
         3: astore 2 /* e */
        start local 2 // java.lang.CloneNotSupportedException e
         4: .line 255
            aload 2 /* e */
            invokevirtual java.lang.CloneNotSupportedException.printStackTrace:()V
        end local 2 // java.lang.CloneNotSupportedException e
         5: .line 258
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            areturn
        end local 1 // java.lang.Object o
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            1    6     1     o  Ljava/lang/Object;
            4    5     2     e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.CloneNotSupportedException

  public abstract com.sun.org.apache.bcel.internal.classfile.Attribute copy(com.sun.org.apache.bcel.internal.classfile.ConstantPool);
    descriptor: (Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
               Name  Flags
      constant_pool  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
         0: .line 270
            getstatic com.sun.org.apache.bcel.internal.Constants.ATTRIBUTE_NAMES:[Ljava/lang/String;
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Attribute.tag:B
            aaload
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Attribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
}
SourceFile: "Attribute.java"