public abstract class javax.sound.sampled.CompoundControl extends javax.sound.sampled.Control
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: javax.sound.sampled.CompoundControl
  super_class: javax.sound.sampled.Control
{
  private javax.sound.sampled.Control[] controls;
    descriptor: [Ljavax/sound/sampled/Control;
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(javax.sound.sampled.CompoundControl$Type, javax.sound.sampled.Control[]);
    descriptor: (Ljavax/sound/sampled/CompoundControl$Type;[Ljavax/sound/sampled/Control;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // javax.sound.sampled.CompoundControl this
        start local 1 // javax.sound.sampled.CompoundControl$Type type
        start local 2 // javax.sound.sampled.Control[] memberControls
         0: .line 63
            aload 0 /* this */
            aload 1 /* type */
            invokespecial javax.sound.sampled.Control.<init>:(Ljavax/sound/sampled/Control$Type;)V
         1: .line 64
            aload 0 /* this */
            aload 2 /* memberControls */
            putfield javax.sound.sampled.CompoundControl.controls:[Ljavax/sound/sampled/Control;
         2: .line 65
            return
        end local 2 // javax.sound.sampled.Control[] memberControls
        end local 1 // javax.sound.sampled.CompoundControl$Type type
        end local 0 // javax.sound.sampled.CompoundControl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Ljavax/sound/sampled/CompoundControl;
            0    3     1            type  Ljavax/sound/sampled/CompoundControl$Type;
            0    3     2  memberControls  [Ljavax/sound/sampled/Control;
    MethodParameters:
                Name  Flags
      type            
      memberControls  

  public javax.sound.sampled.Control[] getMemberControls();
    descriptor: ()[Ljavax/sound/sampled/Control;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // javax.sound.sampled.CompoundControl this
         0: .line 78
            aload 0 /* this */
            getfield javax.sound.sampled.CompoundControl.controls:[Ljavax/sound/sampled/Control;
            arraylength
            anewarray javax.sound.sampled.Control
            astore 1 /* localArray */
        start local 1 // javax.sound.sampled.Control[] localArray
         1: .line 80
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 81
      StackMap locals: javax.sound.sampled.Control[] int
      StackMap stack:
            aload 1 /* localArray */
            iload 2 /* i */
            aload 0 /* this */
            getfield javax.sound.sampled.CompoundControl.controls:[Ljavax/sound/sampled/Control;
            iload 2 /* i */
            aaload
            aastore
         4: .line 80
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield javax.sound.sampled.CompoundControl.controls:[Ljavax/sound/sampled/Control;
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 84
            aload 1 /* localArray */
            areturn
        end local 1 // javax.sound.sampled.Control[] localArray
        end local 0 // javax.sound.sampled.CompoundControl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Ljavax/sound/sampled/CompoundControl;
            1    7     1  localArray  [Ljavax/sound/sampled/Control;
            2    6     2           i  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // javax.sound.sampled.CompoundControl this
         0: .line 97
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuffer buf
         1: .line 98
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 9
         3: .line 99
      StackMap locals: java.lang.StringBuffer int
      StackMap stack:
            iload 2 /* i */
            ifeq 7
         4: .line 100
            aload 1 /* buf */
            ldc ", "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         5: .line 101
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield javax.sound.sampled.CompoundControl.controls:[Ljavax/sound/sampled/Control;
            arraylength
            if_icmpne 7
         6: .line 102
            aload 1 /* buf */
            ldc "and "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         7: .line 105
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            aload 0 /* this */
            getfield javax.sound.sampled.CompoundControl.controls:[Ljavax/sound/sampled/Control;
            iload 2 /* i */
            aaload
            invokevirtual javax.sound.sampled.Control.getType:()Ljavax/sound/sampled/Control$Type;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/Object;)Ljava/lang/StringBuffer;
            pop
         8: .line 98
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield javax.sound.sampled.CompoundControl.controls:[Ljavax/sound/sampled/Control;
            arraylength
            if_icmplt 3
        end local 2 // int i
        10: .line 108
            new java.lang.String
            dup
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            invokevirtual javax.sound.sampled.CompoundControl.getType:()Ljavax/sound/sampled/Control$Type;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " Control containing "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " Controls."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.String.<init>:(Ljava/lang/String;)V
            areturn
        end local 1 // java.lang.StringBuffer buf
        end local 0 // javax.sound.sampled.CompoundControl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljavax/sound/sampled/CompoundControl;
            1   11     1   buf  Ljava/lang/StringBuffer;
            2   10     2     i  I
}
SourceFile: "CompoundControl.java"
NestMembers:
  javax.sound.sampled.CompoundControl$Type
InnerClasses:
  public Type = javax.sound.sampled.CompoundControl$Type of javax.sound.sampled.CompoundControl
  public Type = javax.sound.sampled.Control$Type of javax.sound.sampled.Control