public class com.sun.tools.classfile.AnnotationDefault_attribute extends com.sun.tools.classfile.Attribute
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.classfile.AnnotationDefault_attribute
  super_class: com.sun.tools.classfile.Attribute
{
  public final com.sun.tools.classfile.Annotation$element_value default_value;
    descriptor: Lcom/sun/tools/classfile/Annotation$element_value;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  void <init>(com.sun.tools.classfile.ClassReader, int, int);
    descriptor: (Lcom/sun/tools/classfile/ClassReader;II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
        start local 1 // com.sun.tools.classfile.ClassReader cr
        start local 2 // int name_index
        start local 3 // int length
         0: .line 41
            aload 0 /* this */
            iload 2 /* name_index */
            iload 3 /* length */
            invokespecial com.sun.tools.classfile.Attribute.<init>:(II)V
         1: .line 42
            aload 0 /* this */
            aload 1 /* cr */
            invokestatic com.sun.tools.classfile.Annotation$element_value.read:(Lcom/sun/tools/classfile/ClassReader;)Lcom/sun/tools/classfile/Annotation$element_value;
            putfield com.sun.tools.classfile.AnnotationDefault_attribute.default_value:Lcom/sun/tools/classfile/Annotation$element_value;
         2: .line 43
            return
        end local 3 // int length
        end local 2 // int name_index
        end local 1 // com.sun.tools.classfile.ClassReader cr
        end local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/sun/tools/classfile/AnnotationDefault_attribute;
            0    3     1          cr  Lcom/sun/tools/classfile/ClassReader;
            0    3     2  name_index  I
            0    3     3      length  I
    Exceptions:
      throws java.io.IOException, com.sun.tools.classfile.Annotation$InvalidAnnotation
    MethodParameters:
            Name  Flags
      cr          
      name_index  
      length      

  public void <init>(com.sun.tools.classfile.ConstantPool, com.sun.tools.classfile.Annotation$element_value);
    descriptor: (Lcom/sun/tools/classfile/ConstantPool;Lcom/sun/tools/classfile/Annotation$element_value;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
        start local 1 // com.sun.tools.classfile.ConstantPool constant_pool
        start local 2 // com.sun.tools.classfile.Annotation$element_value default_value
         0: .line 47
            aload 0 /* this */
            aload 1 /* constant_pool */
            ldc "AnnotationDefault"
            invokevirtual com.sun.tools.classfile.ConstantPool.getUTF8Index:(Ljava/lang/String;)I
            aload 2 /* default_value */
            invokespecial com.sun.tools.classfile.AnnotationDefault_attribute.<init>:(ILcom/sun/tools/classfile/Annotation$element_value;)V
         1: .line 48
            return
        end local 2 // com.sun.tools.classfile.Annotation$element_value default_value
        end local 1 // com.sun.tools.classfile.ConstantPool constant_pool
        end local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lcom/sun/tools/classfile/AnnotationDefault_attribute;
            0    2     1  constant_pool  Lcom/sun/tools/classfile/ConstantPool;
            0    2     2  default_value  Lcom/sun/tools/classfile/Annotation$element_value;
    Exceptions:
      throws com.sun.tools.classfile.ConstantPoolException
    MethodParameters:
               Name  Flags
      constant_pool  
      default_value  

  public void <init>(int, com.sun.tools.classfile.Annotation$element_value);
    descriptor: (ILcom/sun/tools/classfile/Annotation$element_value;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
        start local 1 // int name_index
        start local 2 // com.sun.tools.classfile.Annotation$element_value default_value
         0: .line 51
            aload 0 /* this */
            iload 1 /* name_index */
            aload 2 /* default_value */
            invokevirtual com.sun.tools.classfile.Annotation$element_value.length:()I
            invokespecial com.sun.tools.classfile.Attribute.<init>:(II)V
         1: .line 52
            aload 0 /* this */
            aload 2 /* default_value */
            putfield com.sun.tools.classfile.AnnotationDefault_attribute.default_value:Lcom/sun/tools/classfile/Annotation$element_value;
         2: .line 53
            return
        end local 2 // com.sun.tools.classfile.Annotation$element_value default_value
        end local 1 // int name_index
        end local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lcom/sun/tools/classfile/AnnotationDefault_attribute;
            0    3     1     name_index  I
            0    3     2  default_value  Lcom/sun/tools/classfile/Annotation$element_value;
    MethodParameters:
               Name  Flags
      name_index     
      default_value  

  public <R, D> R accept(com.sun.tools.classfile.Attribute$Visitor<R, D>, );
    descriptor: (Lcom/sun/tools/classfile/Attribute$Visitor;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
        start local 1 // com.sun.tools.classfile.Attribute$Visitor visitor
        start local 2 // java.lang.Object data
         0: .line 56
            aload 1 /* visitor */
            aload 0 /* this */
            aload 2 /* data */
            invokeinterface com.sun.tools.classfile.Attribute$Visitor.visitAnnotationDefault:(Lcom/sun/tools/classfile/AnnotationDefault_attribute;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object data
        end local 1 // com.sun.tools.classfile.Attribute$Visitor visitor
        end local 0 // com.sun.tools.classfile.AnnotationDefault_attribute this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/sun/tools/classfile/AnnotationDefault_attribute;
            0    1     1  visitor  Lcom/sun/tools/classfile/Attribute$Visitor<TR;TD;>;
            0    1     2     data  TD;
    Signature: <R:Ljava/lang/Object;D:Ljava/lang/Object;>(Lcom/sun/tools/classfile/Attribute$Visitor<TR;TD;>;TD;)TR;
    MethodParameters:
         Name  Flags
      visitor  
      data     
}
SourceFile: "AnnotationDefault_attribute.java"
InnerClasses:
  InvalidAnnotation = com.sun.tools.classfile.Annotation$InvalidAnnotation of com.sun.tools.classfile.Annotation
  public abstract element_value = com.sun.tools.classfile.Annotation$element_value of com.sun.tools.classfile.Annotation
  public abstract Visitor = com.sun.tools.classfile.Attribute$Visitor of com.sun.tools.classfile.Attribute