public class javax.swing.JLayeredPane extends javax.swing.JComponent implements javax.accessibility.Accessible
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.swing.JLayeredPane
  super_class: javax.swing.JComponent
{
  public static final java.lang.Integer DEFAULT_LAYER;
    descriptor: Ljava/lang/Integer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.Integer PALETTE_LAYER;
    descriptor: Ljava/lang/Integer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.Integer MODAL_LAYER;
    descriptor: Ljava/lang/Integer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.Integer POPUP_LAYER;
    descriptor: Ljava/lang/Integer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.Integer DRAG_LAYER;
    descriptor: Ljava/lang/Integer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.Integer FRAME_CONTENT_LAYER;
    descriptor: Ljava/lang/Integer;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.lang.String LAYER_PROPERTY;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "layeredContainerLayer"

  private java.util.Hashtable<java.awt.Component, java.lang.Integer> componentToLayer;
    descriptor: Ljava/util/Hashtable;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Hashtable<Ljava/awt/Component;Ljava/lang/Integer;>;

  private boolean optimizedDrawingPossible;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 167
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putstatic javax.swing.JLayeredPane.DEFAULT_LAYER:Ljava/lang/Integer;
         1: .line 169
            bipush 100
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putstatic javax.swing.JLayeredPane.PALETTE_LAYER:Ljava/lang/Integer;
         2: .line 171
            sipush 200
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putstatic javax.swing.JLayeredPane.MODAL_LAYER:Ljava/lang/Integer;
         3: .line 173
            sipush 300
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putstatic javax.swing.JLayeredPane.POPUP_LAYER:Ljava/lang/Integer;
         4: .line 175
            sipush 400
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putstatic javax.swing.JLayeredPane.DRAG_LAYER:Ljava/lang/Integer;
         5: .line 182
            sipush -30000
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            putstatic javax.swing.JLayeredPane.FRAME_CONTENT_LAYER:Ljava/lang/Integer;
         6: .line 185
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 195
            aload 0 /* this */
            invokespecial javax.swing.JComponent.<init>:()V
         1: .line 188
            aload 0 /* this */
            iconst_1
            putfield javax.swing.JLayeredPane.optimizedDrawingPossible:Z
         2: .line 196
            aload 0 /* this */
            aconst_null
            invokevirtual javax.swing.JLayeredPane.setLayout:(Ljava/awt/LayoutManager;)V
         3: .line 197
            return
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/swing/JLayeredPane;

  private void validateOptimizedDrawing();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=8, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 200
            iconst_0
            istore 1 /* layeredComponentFound */
        start local 1 // boolean layeredComponentFound
         1: .line 201
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getTreeLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         2: .line 204
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponents:()[Ljava/awt/Component;
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 15
      StackMap locals: javax.swing.JLayeredPane int java.lang.Object top top int int java.awt.Component[]
      StackMap stack:
         3: aload 7
            iload 5
            aaload
            astore 4 /* c */
        start local 4 // java.awt.Component c
         4: .line 205
            aconst_null
            astore 3 /* layer */
        start local 3 // java.lang.Integer layer
         5: .line 207
            aload 4 /* c */
            ldc "javax.swing.JInternalFrame"
            invokestatic sun.awt.SunToolkit.isInstanceOf:(Ljava/lang/Object;Ljava/lang/String;)Z
            ifne 10
         6: .line 208
            aload 4 /* c */
            instanceof javax.swing.JComponent
            ifeq 14
         7: .line 209
            aload 4 /* c */
            checkcast javax.swing.JComponent
         8: .line 210
            ldc "layeredContainerLayer"
            invokevirtual javax.swing.JComponent.getClientProperty:(Ljava/lang/Object;)Ljava/lang/Object;
         9: .line 209
            checkcast java.lang.Integer
            dup
            astore 3 /* layer */
            ifnull 14
        10: .line 212
      StackMap locals: javax.swing.JLayeredPane int java.lang.Object java.lang.Integer java.awt.Component int int java.awt.Component[]
      StackMap stack:
            aload 3 /* layer */
            ifnull 12
            aload 3 /* layer */
            getstatic javax.swing.JLayeredPane.FRAME_CONTENT_LAYER:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.equals:(Ljava/lang/Object;)Z
            ifeq 12
        11: .line 213
            goto 14
        12: .line 214
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* layeredComponentFound */
        13: .line 215
            goto 16
        end local 4 // java.awt.Component c
        end local 3 // java.lang.Integer layer
        14: .line 204
      StackMap locals: javax.swing.JLayeredPane int java.lang.Object top top int int java.awt.Component[]
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        15: iload 5
            iload 6
            if_icmplt 3
        16: .line 201
      StackMap locals: javax.swing.JLayeredPane int java.lang.Object
      StackMap stack:
            aload 2
            monitorexit
        17: goto 20
      StackMap locals:
      StackMap stack: java.lang.Throwable
        18: aload 2
            monitorexit
        19: athrow
        20: .line 220
      StackMap locals:
      StackMap stack:
            iload 1 /* layeredComponentFound */
            ifeq 22
        21: .line 221
            aload 0 /* this */
            iconst_0
            putfield javax.swing.JLayeredPane.optimizedDrawingPossible:Z
            goto 23
        22: .line 223
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.swing.JLayeredPane.optimizedDrawingPossible:Z
        23: .line 224
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean layeredComponentFound
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   24     0                   this  Ljavax/swing/JLayeredPane;
            1   24     1  layeredComponentFound  Z
            5   14     3                  layer  Ljava/lang/Integer;
            4   14     4                      c  Ljava/awt/Component;
      Exception table:
        from    to  target  type
           2    17      18  any
          18    19      18  any

  protected void addImpl(java.awt.Component, java.lang.Object, int);
    descriptor: (Ljava/awt/Component;Ljava/lang/Object;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component comp
        start local 2 // java.lang.Object constraints
        start local 3 // int index
         0: .line 230
            aload 2 /* constraints */
            instanceof java.lang.Integer
            ifeq 4
         1: .line 231
            aload 2 /* constraints */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 4 /* layer */
        start local 4 // int layer
         2: .line 232
            aload 0 /* this */
            aload 1 /* comp */
            iload 4 /* layer */
            invokevirtual javax.swing.JLayeredPane.setLayer:(Ljava/awt/Component;I)V
         3: .line 233
            goto 5
        end local 4 // int layer
         4: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* comp */
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            istore 4 /* layer */
        start local 4 // int layer
         5: .line 236
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* layer */
            iload 3 /* index */
            invokevirtual javax.swing.JLayeredPane.insertIndexForLayer:(II)I
            istore 5 /* pos */
        start local 5 // int pos
         6: .line 237
            aload 0 /* this */
            aload 1 /* comp */
            aload 2 /* constraints */
            iload 5 /* pos */
            invokespecial javax.swing.JComponent.addImpl:(Ljava/awt/Component;Ljava/lang/Object;I)V
         7: .line 238
            aload 1 /* comp */
            invokevirtual java.awt.Component.validate:()V
         8: .line 239
            aload 1 /* comp */
            invokevirtual java.awt.Component.repaint:()V
         9: .line 240
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.validateOptimizedDrawing:()V
        10: .line 241
            return
        end local 5 // int pos
        end local 4 // int layer
        end local 3 // int index
        end local 2 // java.lang.Object constraints
        end local 1 // java.awt.Component comp
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Ljavax/swing/JLayeredPane;
            0   11     1         comp  Ljava/awt/Component;
            0   11     2  constraints  Ljava/lang/Object;
            0   11     3        index  I
            2    4     4        layer  I
            5   11     4        layer  I
            6   11     5          pos  I
    MethodParameters:
             Name  Flags
      comp         
      constraints  
      index        

  public void remove(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // int index
         0: .line 251
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            astore 2 /* c */
        start local 2 // java.awt.Component c
         1: .line 252
            aload 0 /* this */
            iload 1 /* index */
            invokespecial javax.swing.JComponent.remove:(I)V
         2: .line 253
            aload 2 /* c */
            ifnull 4
            aload 2 /* c */
            instanceof javax.swing.JComponent
            ifne 4
         3: .line 254
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentToLayer:()Ljava/util/Hashtable;
            aload 2 /* c */
            invokevirtual java.util.Hashtable.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 256
      StackMap locals: java.awt.Component
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.validateOptimizedDrawing:()V
         5: .line 257
            return
        end local 2 // java.awt.Component c
        end local 1 // int index
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljavax/swing/JLayeredPane;
            0    6     1  index  I
            1    6     2      c  Ljava/awt/Component;
    MethodParameters:
       Name  Flags
      index  

  public void removeAll();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 265
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponents:()[Ljava/awt/Component;
            astore 1 /* children */
        start local 1 // java.awt.Component[] children
         1: .line 266
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentToLayer:()Ljava/util/Hashtable;
            astore 2 /* cToL */
        start local 2 // java.util.Hashtable cToL
         2: .line 267
            aload 1 /* children */
            arraylength
            iconst_1
            isub
            istore 3 /* counter */
        start local 3 // int counter
         3: goto 8
         4: .line 268
      StackMap locals: java.awt.Component[] java.util.Hashtable int
      StackMap stack:
            aload 1 /* children */
            iload 3 /* counter */
            aaload
            astore 4 /* c */
        start local 4 // java.awt.Component c
         5: .line 269
            aload 4 /* c */
            ifnull 7
            aload 4 /* c */
            instanceof javax.swing.JComponent
            ifne 7
         6: .line 270
            aload 2 /* cToL */
            aload 4 /* c */
            invokevirtual java.util.Hashtable.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 4 // java.awt.Component c
         7: .line 267
      StackMap locals:
      StackMap stack:
            iinc 3 /* counter */ -1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* counter */
            ifge 4
        end local 3 // int counter
         9: .line 273
            aload 0 /* this */
            invokespecial javax.swing.JComponent.removeAll:()V
        10: .line 274
            return
        end local 2 // java.util.Hashtable cToL
        end local 1 // java.awt.Component[] children
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljavax/swing/JLayeredPane;
            1   11     1  children  [Ljava/awt/Component;
            2   11     2      cToL  Ljava/util/Hashtable<Ljava/awt/Component;Ljava/lang/Integer;>;
            3    9     3   counter  I
            5    7     4         c  Ljava/awt/Component;

  public boolean isOptimizedDrawingEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 285
            aload 0 /* this */
            getfield javax.swing.JLayeredPane.optimizedDrawingPossible:Z
            ireturn
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/JLayeredPane;
    RuntimeVisibleAnnotations: 
      java.beans.BeanProperty(bound = false)

  public static void putLayer(javax.swing.JComponent, int);
    descriptor: (Ljavax/swing/JComponent;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.JComponent c
        start local 1 // int layer
         0: .line 303
            aload 0 /* c */
            ldc "layeredContainerLayer"
            iload 1 /* layer */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual javax.swing.JComponent.putClientProperty:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 304
            return
        end local 1 // int layer
        end local 0 // javax.swing.JComponent c
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0      c  Ljavax/swing/JComponent;
            0    2     1  layer  I
    MethodParameters:
       Name  Flags
      c      
      layer  

  public static int getLayer(javax.swing.JComponent);
    descriptor: (Ljavax/swing/JComponent;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // javax.swing.JComponent c
         0: .line 315
            aload 0 /* c */
            ldc "layeredContainerLayer"
            invokevirtual javax.swing.JComponent.getClientProperty:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            dup
            astore 1 /* i */
        start local 1 // java.lang.Integer i
         1: ifnull 3
         2: .line 316
            aload 1 /* i */
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         3: .line 317
      StackMap locals: java.lang.Integer
      StackMap stack:
            getstatic javax.swing.JLayeredPane.DEFAULT_LAYER:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
        end local 1 // java.lang.Integer i
        end local 0 // javax.swing.JComponent c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     c  Ljavax/swing/JComponent;
            1    4     1     i  Ljava/lang/Integer;
    MethodParameters:
      Name  Flags
      c     

  public static javax.swing.JLayeredPane getLayeredPaneAbove(java.awt.Component);
    descriptor: (Ljava/awt/Component;)Ljavax/swing/JLayeredPane;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // java.awt.Component c
         0: .line 333
            aload 0 /* c */
            ifnonnull 1
            aconst_null
            areturn
         1: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* c */
            invokevirtual java.awt.Component.getParent:()Ljava/awt/Container;
            astore 1 /* parent */
        start local 1 // java.awt.Component parent
         2: .line 336
            goto 4
         3: .line 337
      StackMap locals: java.awt.Component
      StackMap stack:
            aload 1 /* parent */
            invokevirtual java.awt.Component.getParent:()Ljava/awt/Container;
            astore 1 /* parent */
         4: .line 336
      StackMap locals:
      StackMap stack:
            aload 1 /* parent */
            ifnull 5
            aload 1 /* parent */
            instanceof javax.swing.JLayeredPane
            ifeq 3
         5: .line 338
      StackMap locals:
      StackMap stack:
            aload 1 /* parent */
            checkcast javax.swing.JLayeredPane
            areturn
        end local 1 // java.awt.Component parent
        end local 0 // java.awt.Component c
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0       c  Ljava/awt/Component;
            2    6     1  parent  Ljava/awt/Component;
    MethodParameters:
      Name  Flags
      c     

  public void setLayer(java.awt.Component, int);
    descriptor: (Ljava/awt/Component;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
        start local 2 // int layer
         0: .line 350
            aload 0 /* this */
            aload 1 /* c */
            iload 2 /* layer */
            iconst_m1
            invokevirtual javax.swing.JLayeredPane.setLayer:(Ljava/awt/Component;II)V
         1: .line 351
            return
        end local 2 // int layer
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavax/swing/JLayeredPane;
            0    2     1      c  Ljava/awt/Component;
            0    2     2  layer  I
    MethodParameters:
       Name  Flags
      c      
      layer  

  public void setLayer(java.awt.Component, int, int);
    descriptor: (Ljava/awt/Component;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
        start local 2 // int layer
        start local 3 // int position
         0: .line 365
            aload 0 /* this */
            iload 2 /* layer */
            invokevirtual javax.swing.JLayeredPane.getObjectForLayer:(I)Ljava/lang/Integer;
            astore 4 /* layerObj */
        start local 4 // java.lang.Integer layerObj
         1: .line 367
            iload 2 /* layer */
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            if_icmpne 4
            iload 3 /* position */
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javax.swing.JLayeredPane.getPosition:(Ljava/awt/Component;)I
            if_icmpne 4
         2: .line 368
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual java.awt.Component.getBounds:()Ljava/awt/Rectangle;
            invokevirtual javax.swing.JLayeredPane.repaint:(Ljava/awt/Rectangle;)V
         3: .line 369
            return
         4: .line 373
      StackMap locals: java.lang.Integer
      StackMap stack:
            aload 1 /* c */
            instanceof javax.swing.JComponent
            ifeq 6
         5: .line 374
            aload 1 /* c */
            checkcast javax.swing.JComponent
            ldc "layeredContainerLayer"
            aload 4 /* layerObj */
            invokevirtual javax.swing.JComponent.putClientProperty:(Ljava/lang/Object;Ljava/lang/Object;)V
            goto 7
         6: .line 376
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentToLayer:()Ljava/util/Hashtable;
            aload 1 /* c */
            aload 4 /* layerObj */
            invokevirtual java.util.Hashtable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         7: .line 378
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual java.awt.Component.getParent:()Ljava/awt/Container;
            ifnull 8
            aload 1 /* c */
            invokevirtual java.awt.Component.getParent:()Ljava/awt/Container;
            aload 0 /* this */
            if_acmpeq 10
         8: .line 379
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual java.awt.Component.getBounds:()Ljava/awt/Rectangle;
            invokevirtual javax.swing.JLayeredPane.repaint:(Ljava/awt/Rectangle;)V
         9: .line 380
            return
        10: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            iload 2 /* layer */
            iload 3 /* position */
            invokevirtual javax.swing.JLayeredPane.insertIndexForLayer:(Ljava/awt/Component;II)I
            istore 5 /* index */
        start local 5 // int index
        11: .line 385
            aload 0 /* this */
            aload 1 /* c */
            iload 5 /* index */
            invokevirtual javax.swing.JLayeredPane.setComponentZOrder:(Ljava/awt/Component;I)V
        12: .line 386
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual java.awt.Component.getBounds:()Ljava/awt/Rectangle;
            invokevirtual javax.swing.JLayeredPane.repaint:(Ljava/awt/Rectangle;)V
        13: .line 387
            return
        end local 5 // int index
        end local 4 // java.lang.Integer layerObj
        end local 3 // int position
        end local 2 // int layer
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Ljavax/swing/JLayeredPane;
            0   14     1         c  Ljava/awt/Component;
            0   14     2     layer  I
            0   14     3  position  I
            1   14     4  layerObj  Ljava/lang/Integer;
           11   14     5     index  I
    MethodParameters:
          Name  Flags
      c         
      layer     
      position  

  public int getLayer(java.awt.Component);
    descriptor: (Ljava/awt/Component;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
         0: .line 397
            aload 1 /* c */
            instanceof javax.swing.JComponent
            ifeq 3
         1: .line 398
            aload 1 /* c */
            checkcast javax.swing.JComponent
            ldc "layeredContainerLayer"
            invokevirtual javax.swing.JComponent.getClientProperty:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 2 /* i */
        start local 2 // java.lang.Integer i
         2: goto 4
        end local 2 // java.lang.Integer i
         3: .line 400
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentToLayer:()Ljava/util/Hashtable;
            aload 1 /* c */
            invokevirtual java.util.Hashtable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 2 /* i */
        start local 2 // java.lang.Integer i
         4: .line 402
      StackMap locals: java.lang.Integer
      StackMap stack:
            aload 2 /* i */
            ifnonnull 6
         5: .line 403
            getstatic javax.swing.JLayeredPane.DEFAULT_LAYER:Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         6: .line 404
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
        end local 2 // java.lang.Integer i
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljavax/swing/JLayeredPane;
            0    7     1     c  Ljava/awt/Component;
            2    3     2     i  Ljava/lang/Integer;
            4    7     2     i  Ljava/lang/Integer;
    MethodParameters:
      Name  Flags
      c     

  public int getIndexOf(java.awt.Component);
    descriptor: (Ljava/awt/Component;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
         0: .line 419
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentCount:()I
            istore 3 /* count */
        start local 3 // int count
         1: .line 420
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 6
         3: .line 421
      StackMap locals: int int
      StackMap stack:
            aload 1 /* c */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            if_acmpne 5
         4: .line 422
            iload 2 /* i */
            ireturn
         5: .line 420
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            iload 3 /* count */
            if_icmplt 3
         7: .line 424
            iconst_m1
            ireturn
        end local 3 // int count
        end local 2 // int i
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Ljavax/swing/JLayeredPane;
            0    8     1      c  Ljava/awt/Component;
            2    8     2      i  I
            1    8     3  count  I
    MethodParameters:
      Name  Flags
      c     

  public void moveToFront(java.awt.Component);
    descriptor: (Ljava/awt/Component;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
         0: .line 434
            aload 0 /* this */
            aload 1 /* c */
            iconst_0
            invokevirtual javax.swing.JLayeredPane.setPosition:(Ljava/awt/Component;I)V
         1: .line 435
            return
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/JLayeredPane;
            0    2     1     c  Ljava/awt/Component;
    MethodParameters:
      Name  Flags
      c     

  public void moveToBack(java.awt.Component);
    descriptor: (Ljava/awt/Component;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
         0: .line 445
            aload 0 /* this */
            aload 1 /* c */
            iconst_m1
            invokevirtual javax.swing.JLayeredPane.setPosition:(Ljava/awt/Component;I)V
         1: .line 446
            return
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/JLayeredPane;
            0    2     1     c  Ljava/awt/Component;
    MethodParameters:
      Name  Flags
      c     

  public void setPosition(java.awt.Component, int);
    descriptor: (Ljava/awt/Component;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
        start local 2 // int position
         0: .line 463
            aload 0 /* this */
            aload 1 /* c */
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            iload 2 /* position */
            invokevirtual javax.swing.JLayeredPane.setLayer:(Ljava/awt/Component;II)V
         1: .line 464
            return
        end local 2 // int position
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljavax/swing/JLayeredPane;
            0    2     1         c  Ljava/awt/Component;
            0    2     2  position  I
    MethodParameters:
          Name  Flags
      c         
      position  

  public int getPosition(java.awt.Component);
    descriptor: (Ljava/awt/Component;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component c
         0: .line 477
            iconst_0
            istore 6 /* pos */
        start local 6 // int pos
         1: .line 479
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentCount:()I
            pop
         2: .line 480
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javax.swing.JLayeredPane.getIndexOf:(Ljava/awt/Component;)I
            istore 5 /* startLocation */
        start local 5 // int startLocation
         3: .line 482
            iload 5 /* startLocation */
            iconst_m1
            if_icmpne 5
         4: .line 483
            iconst_m1
            ireturn
         5: .line 485
      StackMap locals: javax.swing.JLayeredPane java.awt.Component top top top int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            istore 3 /* startLayer */
        start local 3 // int startLayer
         6: .line 486
            iload 5 /* startLocation */
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         7: goto 13
         8: .line 487
      StackMap locals: javax.swing.JLayeredPane java.awt.Component int int top int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            istore 4 /* curLayer */
        start local 4 // int curLayer
         9: .line 488
            iload 4 /* curLayer */
            iload 3 /* startLayer */
            if_icmpne 11
        10: .line 489
            iinc 6 /* pos */ 1
            goto 12
        11: .line 491
      StackMap locals: javax.swing.JLayeredPane java.awt.Component int int int int int
      StackMap stack:
            iload 6 /* pos */
            ireturn
        12: .line 486
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
        end local 4 // int curLayer
      StackMap locals: javax.swing.JLayeredPane java.awt.Component int int top int int
      StackMap stack:
        13: iload 2 /* i */
            ifge 8
        14: .line 493
            iload 6 /* pos */
            ireturn
        end local 6 // int pos
        end local 5 // int startLocation
        end local 3 // int startLayer
        end local 2 // int i
        end local 1 // java.awt.Component c
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   15     0           this  Ljavax/swing/JLayeredPane;
            0   15     1              c  Ljava/awt/Component;
            7   15     2              i  I
            6   15     3     startLayer  I
            9   13     4       curLayer  I
            3   15     5  startLocation  I
            1   15     6            pos  I
    MethodParameters:
      Name  Flags
      c     

  public int highestLayer();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 503
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentCount:()I
            ifle 2
         1: .line 504
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            ireturn
         2: .line 505
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/JLayeredPane;

  public int lowestLayer();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 515
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentCount:()I
            istore 1 /* count */
        start local 1 // int count
         1: .line 516
            iload 1 /* count */
            ifle 3
         2: .line 517
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* count */
            iconst_1
            isub
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            ireturn
         3: .line 518
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int count
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljavax/swing/JLayeredPane;
            1    4     1  count  I

  public int getComponentCountInLayer(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // int layer
         0: .line 529
            iconst_0
            istore 5 /* layerCount */
        start local 5 // int layerCount
         1: .line 531
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentCount:()I
            istore 3 /* count */
        start local 3 // int count
         2: .line 532
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 11
         4: .line 533
      StackMap locals: javax.swing.JLayeredPane int int int top int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            istore 4 /* curLayer */
        start local 4 // int curLayer
         5: .line 534
            iload 4 /* curLayer */
            iload 1 /* layer */
            if_icmpne 8
         6: .line 535
            iinc 5 /* layerCount */ 1
         7: .line 537
            goto 10
      StackMap locals: javax.swing.JLayeredPane int int int int int
      StackMap stack:
         8: iload 5 /* layerCount */
            ifgt 12
            iload 4 /* curLayer */
            iload 1 /* layer */
            if_icmpge 10
         9: .line 538
            goto 12
        10: .line 532
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
        end local 4 // int curLayer
      StackMap locals: javax.swing.JLayeredPane int int int top int
      StackMap stack:
        11: iload 2 /* i */
            iload 3 /* count */
            if_icmplt 4
        12: .line 542
      StackMap locals:
      StackMap stack:
            iload 5 /* layerCount */
            ireturn
        end local 5 // int layerCount
        end local 3 // int count
        end local 2 // int i
        end local 1 // int layer
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Ljavax/swing/JLayeredPane;
            0   13     1       layer  I
            3   13     2           i  I
            2   13     3       count  I
            5   11     4    curLayer  I
            1   13     5  layerCount  I
    MethodParameters:
       Name  Flags
      layer  

  public java.awt.Component[] getComponentsInLayer(int);
    descriptor: (I)[Ljava/awt/Component;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // int layer
         0: .line 553
            iconst_0
            istore 5 /* layerCount */
        start local 5 // int layerCount
         1: .line 556
            aload 0 /* this */
            iload 1 /* layer */
            invokevirtual javax.swing.JLayeredPane.getComponentCountInLayer:(I)I
            anewarray java.awt.Component
            astore 6 /* results */
        start local 6 // java.awt.Component[] results
         2: .line 557
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentCount:()I
            istore 3 /* count */
        start local 3 // int count
         3: .line 558
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         4: goto 12
         5: .line 559
      StackMap locals: javax.swing.JLayeredPane int int int top int java.awt.Component[]
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            istore 4 /* curLayer */
        start local 4 // int curLayer
         6: .line 560
            iload 4 /* curLayer */
            iload 1 /* layer */
            if_icmpne 9
         7: .line 561
            aload 6 /* results */
            iload 5 /* layerCount */
            iinc 5 /* layerCount */ 1
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            aastore
         8: .line 563
            goto 11
      StackMap locals: javax.swing.JLayeredPane int int int int int java.awt.Component[]
      StackMap stack:
         9: iload 5 /* layerCount */
            ifgt 13
            iload 4 /* curLayer */
            iload 1 /* layer */
            if_icmpge 11
        10: .line 564
            goto 13
        11: .line 558
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
        end local 4 // int curLayer
      StackMap locals: javax.swing.JLayeredPane int int int top int java.awt.Component[]
      StackMap stack:
        12: iload 2 /* i */
            iload 3 /* count */
            if_icmplt 5
        13: .line 568
      StackMap locals:
      StackMap stack:
            aload 6 /* results */
            areturn
        end local 6 // java.awt.Component[] results
        end local 5 // int layerCount
        end local 3 // int count
        end local 2 // int i
        end local 1 // int layer
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Ljavax/swing/JLayeredPane;
            0   14     1       layer  I
            4   14     2           i  I
            3   14     3       count  I
            6   12     4    curLayer  I
            1   14     5  layerCount  I
            2   14     6     results  [Ljava/awt/Component;
    MethodParameters:
       Name  Flags
      layer  

  public void paint(java.awt.Graphics);
    descriptor: (Ljava/awt/Graphics;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Graphics g
         0: .line 577
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.isOpaque:()Z
            ifeq 10
         1: .line 578
            aload 1 /* g */
            invokevirtual java.awt.Graphics.getClipBounds:()Ljava/awt/Rectangle;
            astore 2 /* r */
        start local 2 // java.awt.Rectangle r
         2: .line 579
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getBackground:()Ljava/awt/Color;
            astore 3 /* c */
        start local 3 // java.awt.Color c
         3: .line 580
            aload 3 /* c */
            ifnonnull 5
         4: .line 581
            getstatic java.awt.Color.lightGray:Ljava/awt/Color;
            astore 3 /* c */
         5: .line 582
      StackMap locals: java.awt.Rectangle java.awt.Color
      StackMap stack:
            aload 1 /* g */
            aload 3 /* c */
            invokevirtual java.awt.Graphics.setColor:(Ljava/awt/Color;)V
         6: .line 583
            aload 2 /* r */
            ifnull 9
         7: .line 584
            aload 1 /* g */
            aload 2 /* r */
            getfield java.awt.Rectangle.x:I
            aload 2 /* r */
            getfield java.awt.Rectangle.y:I
            aload 2 /* r */
            getfield java.awt.Rectangle.width:I
            aload 2 /* r */
            getfield java.awt.Rectangle.height:I
            invokevirtual java.awt.Graphics.fillRect:(IIII)V
         8: .line 585
            goto 10
         9: .line 587
      StackMap locals:
      StackMap stack:
            aload 1 /* g */
            iconst_0
            iconst_0
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getWidth:()I
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getHeight:()I
            invokevirtual java.awt.Graphics.fillRect:(IIII)V
        end local 3 // java.awt.Color c
        end local 2 // java.awt.Rectangle r
        10: .line 590
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* g */
            invokespecial javax.swing.JComponent.paint:(Ljava/awt/Graphics;)V
        11: .line 591
            return
        end local 1 // java.awt.Graphics g
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljavax/swing/JLayeredPane;
            0   12     1     g  Ljava/awt/Graphics;
            2   10     2     r  Ljava/awt/Rectangle;
            3   10     3     c  Ljava/awt/Color;
    MethodParameters:
      Name  Flags
      g     

  protected java.util.Hashtable<java.awt.Component, java.lang.Integer> getComponentToLayer();
    descriptor: ()Ljava/util/Hashtable;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 603
            aload 0 /* this */
            getfield javax.swing.JLayeredPane.componentToLayer:Ljava/util/Hashtable;
            ifnonnull 2
         1: .line 604
            aload 0 /* this */
            new java.util.Hashtable
            dup
            iconst_4
            invokespecial java.util.Hashtable.<init>:(I)V
            putfield javax.swing.JLayeredPane.componentToLayer:Ljava/util/Hashtable;
         2: .line 605
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.JLayeredPane.componentToLayer:Ljava/util/Hashtable;
            areturn
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/JLayeredPane;
    Signature: ()Ljava/util/Hashtable<Ljava/awt/Component;Ljava/lang/Integer;>;

  protected java.lang.Integer getObjectForLayer(int);
    descriptor: (I)Ljava/lang/Integer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // int layer
         0: .line 615
            iload 1 /* layer */
            lookupswitch { // 5
                    0: 1
                  100: 2
                  200: 3
                  300: 4
                  400: 5
              default: 6
          }
         1: .line 617
      StackMap locals:
      StackMap stack:
            getstatic javax.swing.JLayeredPane.DEFAULT_LAYER:Ljava/lang/Integer;
            areturn
         2: .line 619
      StackMap locals:
      StackMap stack:
            getstatic javax.swing.JLayeredPane.PALETTE_LAYER:Ljava/lang/Integer;
            areturn
         3: .line 621
      StackMap locals:
      StackMap stack:
            getstatic javax.swing.JLayeredPane.MODAL_LAYER:Ljava/lang/Integer;
            areturn
         4: .line 623
      StackMap locals:
      StackMap stack:
            getstatic javax.swing.JLayeredPane.POPUP_LAYER:Ljava/lang/Integer;
            areturn
         5: .line 625
      StackMap locals:
      StackMap stack:
            getstatic javax.swing.JLayeredPane.DRAG_LAYER:Ljava/lang/Integer;
            areturn
         6: .line 627
      StackMap locals:
      StackMap stack:
            iload 1 /* layer */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        end local 1 // int layer
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Ljavax/swing/JLayeredPane;
            0    7     1  layer  I
    MethodParameters:
       Name  Flags
      layer  

  protected int insertIndexForLayer(int, int);
    descriptor: (II)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // int layer
        start local 2 // int position
         0: .line 642
            aload 0 /* this */
            aconst_null
            iload 1 /* layer */
            iload 2 /* position */
            invokevirtual javax.swing.JLayeredPane.insertIndexForLayer:(Ljava/awt/Component;II)I
            ireturn
        end local 2 // int position
        end local 1 // int layer
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Ljavax/swing/JLayeredPane;
            0    1     1     layer  I
            0    1     2  position  I
    MethodParameters:
          Name  Flags
      layer     
      position  

  private int insertIndexForLayer(java.awt.Component, int, int);
    descriptor: (Ljava/awt/Component;II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=12, args_size=4
        start local 0 // javax.swing.JLayeredPane this
        start local 1 // java.awt.Component comp
        start local 2 // int layer
        start local 3 // int position
         0: .line 660
            iconst_m1
            istore 7 /* layerStart */
        start local 7 // int layerStart
         1: .line 661
            iconst_m1
            istore 8 /* layerEnd */
        start local 8 // int layerEnd
         2: .line 662
            aload 0 /* this */
            invokevirtual javax.swing.JLayeredPane.getComponentCount:()I
            istore 9 /* componentCount */
        start local 9 // int componentCount
         3: .line 665
            new java.util.ArrayList
            dup
            iload 9 /* componentCount */
            invokespecial java.util.ArrayList.<init>:(I)V
         4: .line 664
            astore 10 /* compList */
        start local 10 // java.util.ArrayList compList
         5: .line 666
            iconst_0
            istore 11 /* index */
        start local 11 // int index
         6: goto 10
         7: .line 667
      StackMap locals: javax.swing.JLayeredPane java.awt.Component int int top top top int int int java.util.ArrayList int
      StackMap stack:
            aload 0 /* this */
            iload 11 /* index */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            aload 1 /* comp */
            if_acmpeq 9
         8: .line 668
            aload 10 /* compList */
            aload 0 /* this */
            iload 11 /* index */
            invokevirtual javax.swing.JLayeredPane.getComponent:(I)Ljava/awt/Component;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         9: .line 666
      StackMap locals:
      StackMap stack:
            iinc 11 /* index */ 1
      StackMap locals:
      StackMap stack:
        10: iload 11 /* index */
            iload 9 /* componentCount */
            if_icmplt 7
        end local 11 // int index
        11: .line 672
            aload 10 /* compList */
            invokevirtual java.util.ArrayList.size:()I
            istore 5 /* count */
        start local 5 // int count
        12: .line 673
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        13: goto 25
        14: .line 674
      StackMap locals: javax.swing.JLayeredPane java.awt.Component int int int int top int int int java.util.ArrayList
      StackMap stack:
            aload 0 /* this */
            aload 10 /* compList */
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.awt.Component
            invokevirtual javax.swing.JLayeredPane.getLayer:(Ljava/awt/Component;)I
            istore 6 /* curLayer */
        start local 6 // int curLayer
        15: .line 675
            iload 7 /* layerStart */
            iconst_m1
            if_icmpne 17
            iload 6 /* curLayer */
            iload 2 /* layer */
            if_icmpne 17
        16: .line 676
            iload 4 /* i */
            istore 7 /* layerStart */
        17: .line 678
      StackMap locals: javax.swing.JLayeredPane java.awt.Component int int int int int int int int java.util.ArrayList
      StackMap stack:
            iload 6 /* curLayer */
            iload 2 /* layer */
            if_icmpge 24
        18: .line 679
            iload 4 /* i */
            ifne 22
        19: .line 682
            iconst_0
            istore 7 /* layerStart */
        20: .line 683
            iconst_0
            istore 8 /* layerEnd */
        21: .line 684
            goto 26
        22: .line 685
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            istore 8 /* layerEnd */
        23: .line 687
            goto 26
        24: .line 673
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
        end local 6 // int curLayer
      StackMap locals: javax.swing.JLayeredPane java.awt.Component int int int int top int int int java.util.ArrayList
      StackMap stack:
        25: iload 4 /* i */
            iload 5 /* count */
            if_icmplt 14
        26: .line 694
      StackMap locals:
      StackMap stack:
            iload 7 /* layerStart */
            iconst_m1
            if_icmpne 28
            iload 8 /* layerEnd */
            iconst_m1
            if_icmpne 28
        27: .line 695
            iload 5 /* count */
            ireturn
        28: .line 698
      StackMap locals:
      StackMap stack:
            iload 7 /* layerStart */
            iconst_m1
            if_icmpeq 30
            iload 8 /* layerEnd */
            iconst_m1
            if_icmpne 30
        29: .line 699
            iload 5 /* count */
            istore 8 /* layerEnd */
        30: .line 701
      StackMap locals:
      StackMap stack:
            iload 8 /* layerEnd */
            iconst_m1
            if_icmpeq 32
            iload 7 /* layerStart */
            iconst_m1
            if_icmpne 32
        31: .line 702
            iload 8 /* layerEnd */
            istore 7 /* layerStart */
        32: .line 705
      StackMap locals:
      StackMap stack:
            iload 3 /* position */
            iconst_m1
            if_icmpne 34
        33: .line 706
            iload 8 /* layerEnd */
            ireturn
        34: .line 710
      StackMap locals:
      StackMap stack:
            iload 3 /* position */
            iconst_m1
            if_icmple 36
            iload 7 /* layerStart */
            iload 3 /* position */
            iadd
            iload 8 /* layerEnd */
            if_icmpgt 36
        35: .line 711
            iload 7 /* layerStart */
            iload 3 /* position */
            iadd
            ireturn
        36: .line 714
      StackMap locals:
      StackMap stack:
            iload 8 /* layerEnd */
            ireturn
        end local 10 // java.util.ArrayList compList
        end local 9 // int componentCount
        end local 8 // int layerEnd
        end local 7 // int layerStart
        end local 5 // int count
        end local 4 // int i
        end local 3 // int position
        end local 2 // int layer
        end local 1 // java.awt.Component comp
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   37     0            this  Ljavax/swing/JLayeredPane;
            0   37     1            comp  Ljava/awt/Component;
            0   37     2           layer  I
            0   37     3        position  I
           13   37     4               i  I
           12   37     5           count  I
           15   25     6        curLayer  I
            1   37     7      layerStart  I
            2   37     8        layerEnd  I
            3   37     9  componentCount  I
            5   37    10        compList  Ljava/util/ArrayList<Ljava/awt/Component;>;
            6   11    11           index  I
    MethodParameters:
          Name  Flags
      comp      
      layer     
      position  

  protected java.lang.String paramString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 727
            aload 0 /* this */
            getfield javax.swing.JLayeredPane.optimizedDrawingPossible:Z
            ifeq 2
         1: .line 728
            ldc "true"
            goto 3
      StackMap locals:
      StackMap stack:
         2: ldc "false"
         3: .line 727
      StackMap locals:
      StackMap stack: java.lang.String
            astore 1 /* optimizedDrawingPossibleString */
        start local 1 // java.lang.String optimizedDrawingPossibleString
         4: .line 730
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokespecial javax.swing.JComponent.paramString:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         5: .line 731
            ldc ",optimizedDrawingPossible="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* optimizedDrawingPossibleString */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 730
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.String optimizedDrawingPossibleString
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    7     0                            this  Ljavax/swing/JLayeredPane;
            4    7     1  optimizedDrawingPossibleString  Ljava/lang/String;

  public javax.accessibility.AccessibleContext getAccessibleContext();
    descriptor: ()Ljavax/accessibility/AccessibleContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javax.swing.JLayeredPane this
         0: .line 749
            aload 0 /* this */
            getfield javax.swing.JLayeredPane.accessibleContext:Ljavax/accessibility/AccessibleContext;
            ifnonnull 2
         1: .line 750
            aload 0 /* this */
            new javax.swing.JLayeredPane$AccessibleJLayeredPane
            dup
            aload 0 /* this */
            invokespecial javax.swing.JLayeredPane$AccessibleJLayeredPane.<init>:(Ljavax/swing/JLayeredPane;)V
            putfield javax.swing.JLayeredPane.accessibleContext:Ljavax/accessibility/AccessibleContext;
         2: .line 752
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.JLayeredPane.accessibleContext:Ljavax/accessibility/AccessibleContext;
            areturn
        end local 0 // javax.swing.JLayeredPane this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/JLayeredPane;
    RuntimeVisibleAnnotations: 
      java.beans.BeanProperty(bound = false)
}
SourceFile: "JLayeredPane.java"
NestMembers:
  javax.swing.JLayeredPane$AccessibleJLayeredPane
InnerClasses:
  protected AccessibleJLayeredPane = javax.swing.JLayeredPane$AccessibleJLayeredPane of javax.swing.JLayeredPane
    RuntimeVisibleAnnotations: 
      java.beans.JavaBean(defaultProperty = "accessibleContext")