public class javax.swing.tree.VariableHeightLayoutCache extends javax.swing.tree.AbstractLayoutCache
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.swing.tree.VariableHeightLayoutCache
  super_class: javax.swing.tree.AbstractLayoutCache
{
  private java.util.Vector<java.lang.Object> visibleNodes;
    descriptor: Ljava/util/Vector;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Vector<Ljava/lang/Object;>;

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

  private javax.swing.tree.VariableHeightLayoutCache$TreeStateNode root;
    descriptor: Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    flags: (0x0002) ACC_PRIVATE

  private java.awt.Rectangle boundsBuffer;
    descriptor: Ljava/awt/Rectangle;
    flags: (0x0002) ACC_PRIVATE

  private java.util.Hashtable<javax.swing.tree.TreePath, javax.swing.tree.VariableHeightLayoutCache$TreeStateNode> treePathMapping;
    descriptor: Ljava/util/Hashtable;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Hashtable<Ljavax/swing/tree/TreePath;Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;>;

  private java.util.Stack<java.util.Stack<javax.swing.tree.TreePath>> tempStacks;
    descriptor: Ljava/util/Stack;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Stack<Ljava/util/Stack<Ljavax/swing/tree/TreePath;>;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
         0: .line 92
            aload 0 /* this */
            invokespecial javax.swing.tree.AbstractLayoutCache.<init>:()V
         1: .line 93
            aload 0 /* this */
            new java.util.Stack
            dup
            invokespecial java.util.Stack.<init>:()V
            putfield javax.swing.tree.VariableHeightLayoutCache.tempStacks:Ljava/util/Stack;
         2: .line 94
            aload 0 /* this */
            new java.util.Vector
            dup
            invokespecial java.util.Vector.<init>:()V
            putfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
         3: .line 95
            aload 0 /* this */
            new java.awt.Rectangle
            dup
            invokespecial java.awt.Rectangle.<init>:()V
            putfield javax.swing.tree.VariableHeightLayoutCache.boundsBuffer:Ljava/awt/Rectangle;
         4: .line 96
            aload 0 /* this */
            new java.util.Hashtable
            dup
            invokespecial java.util.Hashtable.<init>:()V
            putfield javax.swing.tree.VariableHeightLayoutCache.treePathMapping:Ljava/util/Hashtable;
         5: .line 97
            return
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;

  public void setModel(javax.swing.tree.TreeModel);
    descriptor: (Ljavax/swing/tree/TreeModel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreeModel newModel
         0: .line 108
            aload 0 /* this */
            aload 1 /* newModel */
            invokespecial javax.swing.tree.AbstractLayoutCache.setModel:(Ljavax/swing/tree/TreeModel;)V
         1: .line 109
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.rebuild:(Z)V
         2: .line 110
            return
        end local 1 // javax.swing.tree.TreeModel newModel
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    3     1  newModel  Ljavax/swing/tree/TreeModel;
    MethodParameters:
          Name  Flags
      newModel  

  public void setRootVisible(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // boolean rootVisible
         0: .line 124
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isRootVisible:()Z
            iload 1 /* rootVisible */
            if_icmpeq 17
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            ifnull 17
         1: .line 125
            iload 1 /* rootVisible */
            ifeq 5
         2: .line 126
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:(I)V
         3: .line 127
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            iconst_0
            invokevirtual java.util.Vector.insertElementAt:(Ljava/lang/Object;I)V
         4: .line 128
            goto 11
         5: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            invokevirtual java.util.Vector.size:()I
            ifle 11
         6: .line 130
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            iconst_0
            invokevirtual java.util.Vector.removeElementAt:(I)V
         7: .line 131
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            ifnull 11
         8: .line 132
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
         9: .line 133
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getTreePath:()Ljavax/swing/tree/TreePath;
        10: .line 132
            invokeinterface javax.swing.tree.TreeSelectionModel.removeSelectionPath:(Ljavax/swing/tree/TreePath;)V
        11: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            ifnull 13
        12: .line 136
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            invokeinterface javax.swing.tree.TreeSelectionModel.resetRowSelection:()V
        13: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            ifle 15
        14: .line 138
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.setYOrigin:(I)V
        15: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        16: .line 140
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        17: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* rootVisible */
            invokespecial javax.swing.tree.AbstractLayoutCache.setRootVisible:(Z)V
        18: .line 143
            return
        end local 1 // boolean rootVisible
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   19     0         this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   19     1  rootVisible  Z
    MethodParameters:
             Name  Flags
      rootVisible  

  public void setRowHeight(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // int rowHeight
         0: .line 156
            iload 1 /* rowHeight */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowHeight:()I
            if_icmpeq 4
         1: .line 157
            aload 0 /* this */
            iload 1 /* rowHeight */
            invokespecial javax.swing.tree.AbstractLayoutCache.setRowHeight:(I)V
         2: .line 158
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.invalidateSizes:()V
         3: .line 159
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
         4: .line 161
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int rowHeight
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    5     1  rowHeight  I
    MethodParameters:
           Name  Flags
      rowHeight  

  public void setNodeDimensions(javax.swing.tree.AbstractLayoutCache$NodeDimensions);
    descriptor: (Ljavax/swing/tree/AbstractLayoutCache$NodeDimensions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.AbstractLayoutCache$NodeDimensions nd
         0: .line 168
            aload 0 /* this */
            aload 1 /* nd */
            invokespecial javax.swing.tree.AbstractLayoutCache.setNodeDimensions:(Ljavax/swing/tree/AbstractLayoutCache$NodeDimensions;)V
         1: .line 169
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.invalidateSizes:()V
         2: .line 170
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
         3: .line 171
            return
        end local 1 // javax.swing.tree.AbstractLayoutCache$NodeDimensions nd
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    4     1    nd  Ljavax/swing/tree/AbstractLayoutCache$NodeDimensions;
    MethodParameters:
      Name  Flags
      nd    

  public void setExpandedState(javax.swing.tree.TreePath, boolean);
    descriptor: (Ljavax/swing/tree/TreePath;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
        start local 2 // boolean isExpanded
         0: .line 180
            aload 1 /* path */
            ifnull 7
         1: .line 181
            iload 2 /* isExpanded */
            ifeq 3
         2: .line 182
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.ensurePathIsExpanded:(Ljavax/swing/tree/TreePath;Z)V
            goto 7
         3: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* path */
            iconst_0
            iconst_1
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 3 /* node */
        start local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         4: .line 186
            aload 3 /* node */
            ifnull 7
         5: .line 187
            aload 3 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.makeVisible:()V
         6: .line 188
            aload 3 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.collapse:()V
        end local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         7: .line 192
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean isExpanded
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    8     1        path  Ljavax/swing/tree/TreePath;
            0    8     2  isExpanded  Z
            4    7     3        node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
            Name  Flags
      path        
      isExpanded  

  public boolean getExpandedState(javax.swing.tree.TreePath);
    descriptor: (Ljavax/swing/tree/TreePath;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
         0: .line 199
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 2 /* node */
        start local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         1: .line 201
            aload 2 /* node */
            ifnull 3
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifeq 2
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifeq 2
            iconst_1
            goto 4
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
         2: iconst_0
            goto 4
         3: .line 202
      StackMap locals:
      StackMap stack:
            iconst_0
         4: .line 201
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    5     1  path  Ljavax/swing/tree/TreePath;
            1    5     2  node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      path  

  public java.awt.Rectangle getBounds(javax.swing.tree.TreePath, java.awt.Rectangle);
    descriptor: (Ljavax/swing/tree/TreePath;Ljava/awt/Rectangle;)Ljava/awt/Rectangle;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
        start local 2 // java.awt.Rectangle placeIn
         0: .line 215
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 3 /* node */
        start local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         1: .line 217
            aload 3 /* node */
            ifnull 5
         2: .line 218
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:Z
            ifeq 4
         3: .line 219
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:(Z)V
         4: .line 220
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            aload 3 /* node */
            aload 2 /* placeIn */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getNodeBounds:(Ljava/awt/Rectangle;)Ljava/awt/Rectangle;
            areturn
         5: .line 222
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 2 // java.awt.Rectangle placeIn
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    6     1     path  Ljavax/swing/tree/TreePath;
            0    6     2  placeIn  Ljava/awt/Rectangle;
            1    6     3     node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
         Name  Flags
      path     
      placeIn  

  public javax.swing.tree.TreePath getPathForRow(int);
    descriptor: (I)Ljavax/swing/tree/TreePath;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // int row
         0: .line 234
            iload 1 /* row */
            iflt 2
            iload 1 /* row */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            if_icmpge 2
         1: .line 235
            aload 0 /* this */
            iload 1 /* row */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getTreePath:()Ljavax/swing/tree/TreePath;
            areturn
         2: .line 237
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // int row
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    3     1   row  I
    MethodParameters:
      Name  Flags
      row   

  public int getRowForPath(javax.swing.tree.TreePath);
    descriptor: (Ljavax/swing/tree/TreePath;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
         0: .line 249
            aload 1 /* path */
            ifnonnull 2
         1: .line 250
            iconst_m1
            ireturn
         2: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 2 /* visNode */
        start local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode visNode
         3: .line 254
            aload 2 /* visNode */
            ifnull 5
         4: .line 255
            aload 2 /* visNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            ireturn
         5: .line 256
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode visNode
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    6     1     path  Ljavax/swing/tree/TreePath;
            3    6     2  visNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      path  

  public int getRowCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
         0: .line 264
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            invokevirtual java.util.Vector.size:()I
            ireturn
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;

  public void invalidatePathBounds(javax.swing.tree.TreePath);
    descriptor: (Ljavax/swing/tree/TreePath;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
         0: .line 274
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 2 /* node */
        start local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         1: .line 276
            aload 2 /* node */
            ifnull 5
         2: .line 277
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.markSizeInvalid:()V
         3: .line 278
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifeq 5
         4: .line 279
            aload 0 /* this */
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
         5: .line 281
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            return
        end local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    6     1  path  Ljavax/swing/tree/TreePath;
            1    6     2  node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      path  

  public int getPreferredHeight();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
         0: .line 289
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            istore 1 /* rowCount */
        start local 1 // int rowCount
         1: .line 291
            iload 1 /* rowCount */
            ifle 4
         2: .line 292
            aload 0 /* this */
            iload 1 /* rowCount */
            iconst_1
            isub
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 2 /* node */
        start local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         3: .line 294
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getYOrigin:()I
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getPreferredHeight:()I
            iadd
            ireturn
        end local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         4: .line 296
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int rowCount
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Ljavax/swing/tree/VariableHeightLayoutCache;
            1    5     1  rowCount  I
            3    4     2      node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;

  public int getPreferredWidth(java.awt.Rectangle);
    descriptor: (Ljava/awt/Rectangle;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // java.awt.Rectangle bounds
         0: .line 306
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:Z
            ifeq 2
         1: .line 307
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:(Z)V
         2: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getMaxNodeWidth:()I
            ireturn
        end local 1 // java.awt.Rectangle bounds
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    3     1  bounds  Ljava/awt/Rectangle;
    MethodParameters:
        Name  Flags
      bounds  

  public javax.swing.tree.TreePath getPathClosestTo(int, int);
    descriptor: (II)Ljavax/swing/tree/TreePath;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // int x
        start local 2 // int y
         0: .line 325
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            ifne 2
         1: .line 326
            aconst_null
            areturn
         2: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:Z
            ifeq 4
         3: .line 329
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:(Z)V
         4: .line 331
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* y */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowContainingYLocation:(I)I
            istore 3 /* row */
        start local 3 // int row
         5: .line 333
            aload 0 /* this */
            iload 3 /* row */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getTreePath:()Ljavax/swing/tree/TreePath;
            areturn
        end local 3 // int row
        end local 2 // int y
        end local 1 // int x
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    6     1     x  I
            0    6     2     y  I
            5    6     3   row  I
    MethodParameters:
      Name  Flags
      x     
      y     

  public java.util.Enumeration<javax.swing.tree.TreePath> getVisiblePathsFrom(javax.swing.tree.TreePath);
    descriptor: (Ljavax/swing/tree/TreePath;)Ljava/util/Enumeration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
         0: .line 346
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 2 /* node */
        start local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         1: .line 348
            aload 2 /* node */
            ifnull 3
         2: .line 349
            new javax.swing.tree.VariableHeightLayoutCache$VisibleTreeStateNodeEnumeration
            dup
            aload 0 /* this */
            aload 2 /* node */
            invokespecial javax.swing.tree.VariableHeightLayoutCache$VisibleTreeStateNodeEnumeration.<init>:(Ljavax/swing/tree/VariableHeightLayoutCache;Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;)V
            areturn
         3: .line 351
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            aconst_null
            areturn
        end local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    4     1  path  Ljavax/swing/tree/TreePath;
            1    4     2  node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    Signature: (Ljavax/swing/tree/TreePath;)Ljava/util/Enumeration<Ljavax/swing/tree/TreePath;>;
    MethodParameters:
      Name  Flags
      path  

  public int getVisibleChildCount(javax.swing.tree.TreePath);
    descriptor: (Ljavax/swing/tree/TreePath;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
         0: .line 359
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 2 /* node */
        start local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         1: .line 361
            aload 2 /* node */
            ifnull 2
            aload 2 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getVisibleChildCount:()I
            goto 3
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    4     1  path  Ljavax/swing/tree/TreePath;
            1    4     2  node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      path  

  public void invalidateSizes();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
         0: .line 369
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            ifnull 2
         1: .line 370
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.deepMarkSizeInvalid:()V
         2: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 4
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            invokevirtual java.util.Vector.size:()I
            ifle 4
         3: .line 372
            aload 0 /* this */
            iconst_1
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:(Z)V
         4: .line 374
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;

  public boolean isExpanded(javax.swing.tree.TreePath);
    descriptor: (Ljavax/swing/tree/TreePath;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
         0: .line 383
            aload 1 /* path */
            ifnull 4
         1: .line 384
            aload 0 /* this */
            aload 1 /* path */
            iconst_1
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 2 /* lastNode */
        start local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode lastNode
         2: .line 386
            aload 2 /* lastNode */
            ifnull 3
            aload 2 /* lastNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifeq 3
            iconst_1
            ireturn
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode lastNode
         4: .line 388
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    5     1      path  Ljavax/swing/tree/TreePath;
            2    4     2  lastNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      path  

  public void treeNodesChanged(javax.swing.event.TreeModelEvent);
    descriptor: (Ljavax/swing/event/TreeModelEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.event.TreeModelEvent e
         0: .line 412
            aload 1 /* e */
            ifnull 28
         1: .line 416
            aload 1 /* e */
            invokevirtual javax.swing.event.TreeModelEvent.getChildIndices:()[I
            astore 2 /* changedIndexs */
        start local 2 // int[] changedIndexs
         2: .line 417
            aload 0 /* this */
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getModel:()Ljavax/swing/tree/TreeModel;
            invokestatic sun.swing.SwingUtilities2.getTreePath:(Ljavax/swing/event/TreeModelEvent;Ljavax/swing/tree/TreeModel;)Ljavax/swing/tree/TreePath;
            iconst_0
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 3 /* changedNode */
        start local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedNode
         3: .line 418
            aload 3 /* changedNode */
            ifnull 28
         4: .line 419
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getValue:()Ljava/lang/Object;
            astore 4 /* changedValue */
        start local 4 // java.lang.Object changedValue
         5: .line 423
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:()V
         6: .line 424
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.hasBeenExpanded:()Z
            ifeq 21
            aload 2 /* changedIndexs */
            ifnull 21
         7: .line 428
            iconst_0
            istore 5 /* counter */
        start local 5 // int counter
         8: goto 19
         9: .line 430
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent int[] javax.swing.tree.VariableHeightLayoutCache$TreeStateNode java.lang.Object int
      StackMap stack:
            aload 3 /* changedNode */
        10: .line 431
            aload 2 /* changedIndexs */
            iload 5 /* counter */
            iaload
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildAt:(I)Ljavax/swing/tree/TreeNode;
        11: .line 430
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 6 /* changedChildNode */
        start local 6 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedChildNode
        12: .line 433
            aload 6 /* changedChildNode */
        13: .line 434
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            aload 4 /* changedValue */
        14: .line 435
            aload 2 /* changedIndexs */
            iload 5 /* counter */
            iaload
        15: .line 434
            invokeinterface javax.swing.tree.TreeModel.getChild:(Ljava/lang/Object;I)Ljava/lang/Object;
        16: .line 433
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.setUserObject:(Ljava/lang/Object;)V
        17: .line 436
            aload 6 /* changedChildNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:()V
        18: .line 429
            iinc 5 /* counter */ 1
        end local 6 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedChildNode
        19: .line 428
      StackMap locals:
      StackMap stack:
            iload 5 /* counter */
            aload 2 /* changedIndexs */
            arraylength
            if_icmplt 9
        end local 5 // int counter
        20: .line 438
            goto 23
        21: .line 439
      StackMap locals:
      StackMap stack:
            aload 3 /* changedNode */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            if_acmpne 23
        22: .line 441
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:()V
        23: .line 443
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 27
        24: .line 444
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            istore 5 /* aRow */
        start local 5 // int aRow
        25: .line 446
            iload 5 /* aRow */
            iconst_m1
            if_icmpeq 27
        26: .line 447
            aload 0 /* this */
            iload 5 /* aRow */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        end local 5 // int aRow
        27: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        end local 4 // java.lang.Object changedValue
        end local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedNode
        end local 2 // int[] changedIndexs
        28: .line 452
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javax.swing.event.TreeModelEvent e
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   29     0              this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   29     1                 e  Ljavax/swing/event/TreeModelEvent;
            2   28     2     changedIndexs  [I
            3   28     3       changedNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            5   28     4      changedValue  Ljava/lang/Object;
            8   20     5           counter  I
           12   19     6  changedChildNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
           25   27     5              aRow  I
    MethodParameters:
      Name  Flags
      e     

  public void treeNodesInserted(javax.swing.event.TreeModelEvent);
    descriptor: (Ljavax/swing/event/TreeModelEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.event.TreeModelEvent e
         0: .line 465
            aload 1 /* e */
            ifnull 47
         1: .line 469
            aload 1 /* e */
            invokevirtual javax.swing.event.TreeModelEvent.getChildIndices:()[I
            astore 2 /* changedIndexs */
        start local 2 // int[] changedIndexs
         2: .line 470
            aload 0 /* this */
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getModel:()Ljavax/swing/tree/TreeModel;
            invokestatic sun.swing.SwingUtilities2.getTreePath:(Ljavax/swing/event/TreeModelEvent;Ljavax/swing/tree/TreeModel;)Ljavax/swing/tree/TreePath;
            iconst_0
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 3 /* changedParentNode */
        start local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedParentNode
         3: .line 474
            aload 3 /* changedParentNode */
            ifnull 47
            aload 2 /* changedIndexs */
            ifnull 47
         4: .line 475
            aload 2 /* changedIndexs */
            arraylength
            ifle 47
         5: .line 476
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.hasBeenExpanded:()Z
            ifeq 41
         6: .line 481
            aload 3 /* changedParentNode */
         7: .line 482
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildCount:()I
         8: .line 481
            istore 6 /* oldChildCount */
        start local 6 // int oldChildCount
         9: .line 484
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getValue:()Ljava/lang/Object;
            pop
        10: .line 485
            aload 3 /* changedParentNode */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            if_acmpne 12
        11: .line 486
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.rootVisible:Z
            ifeq 15
        12: .line 487
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent int[] javax.swing.tree.VariableHeightLayoutCache$TreeStateNode top top int
      StackMap stack:
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            iconst_m1
            if_icmpeq 14
        13: .line 488
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifne 15
        14: .line 485
      StackMap locals:
      StackMap stack:
            iconst_0
            goto 16
      StackMap locals:
      StackMap stack:
        15: iconst_1
      StackMap locals:
      StackMap stack: int
        16: istore 4 /* makeVisible */
        start local 4 // boolean makeVisible
        17: .line 489
            iconst_0
            istore 5 /* counter */
        start local 5 // int counter
        18: goto 23
        19: .line 491
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent int[] javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int int int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* changedParentNode */
        20: .line 492
            aload 2 /* changedIndexs */
            iload 5 /* counter */
            iaload
        21: .line 491
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.createNodeAt:(Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            pop
        22: .line 489
            iinc 5 /* counter */ 1
      StackMap locals:
      StackMap stack:
        23: iload 5 /* counter */
            aload 2 /* changedIndexs */
            arraylength
            if_icmplt 19
        24: .line 494
            iload 6 /* oldChildCount */
            ifne 26
        25: .line 496
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:()V
        26: .line 498
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            ifnull 28
        27: .line 499
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            invokeinterface javax.swing.tree.TreeSelectionModel.resetRowSelection:()V
        28: .line 502
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 38
            iload 4 /* makeVisible */
            ifne 31
        29: .line 503
            iload 6 /* oldChildCount */
            ifne 38
        30: .line 504
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifeq 38
        31: .line 505
      StackMap locals:
      StackMap stack:
            aload 3 /* changedParentNode */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            if_acmpne 33
        32: .line 506
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
            goto 36
        33: .line 508
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* changedParentNode */
        34: .line 509
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
        35: .line 508
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        36: .line 510
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        37: .line 511
            goto 47
        38: .line 512
      StackMap locals:
      StackMap stack:
            iload 4 /* makeVisible */
            ifeq 47
        39: .line 513
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        end local 6 // int oldChildCount
        end local 5 // int counter
        end local 4 // boolean makeVisible
        40: .line 514
            goto 47
        41: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getValue:()Ljava/lang/Object;
            invokeinterface javax.swing.tree.TreeModel.getChildCount:(Ljava/lang/Object;)I
        42: .line 516
            aload 2 /* changedIndexs */
            arraylength
        43: .line 515
            isub
            ifne 47
        44: .line 517
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:()V
        45: .line 518
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 47
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifeq 47
        46: .line 519
            aload 0 /* this */
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        end local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedParentNode
        end local 2 // int[] changedIndexs
        47: .line 523
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javax.swing.event.TreeModelEvent e
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   48     0               this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   48     1                  e  Ljavax/swing/event/TreeModelEvent;
            2   47     2      changedIndexs  [I
            3   47     3  changedParentNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
           17   40     4        makeVisible  Z
           18   40     5            counter  I
            9   40     6      oldChildCount  I
    MethodParameters:
      Name  Flags
      e     

  public void treeNodesRemoved(javax.swing.event.TreeModelEvent);
    descriptor: (Ljavax/swing/event/TreeModelEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.event.TreeModelEvent e
         0: .line 539
            aload 1 /* e */
            ifnull 52
         1: .line 543
            aload 1 /* e */
            invokevirtual javax.swing.event.TreeModelEvent.getChildIndices:()[I
            astore 2 /* changedIndexs */
        start local 2 // int[] changedIndexs
         2: .line 544
            aload 0 /* this */
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getModel:()Ljavax/swing/tree/TreeModel;
            invokestatic sun.swing.SwingUtilities2.getTreePath:(Ljavax/swing/event/TreeModelEvent;Ljavax/swing/tree/TreeModel;)Ljavax/swing/tree/TreePath;
            iconst_0
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 3 /* changedParentNode */
        start local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedParentNode
         3: .line 547
            aload 3 /* changedParentNode */
            ifnull 52
            aload 2 /* changedIndexs */
            ifnull 52
         4: .line 548
            aload 2 /* changedIndexs */
            arraylength
            ifle 52
         5: .line 549
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.hasBeenExpanded:()Z
            ifeq 48
         6: .line 555
            aload 3 /* changedParentNode */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            if_acmpne 8
         7: .line 556
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.rootVisible:Z
            ifeq 11
         8: .line 557
      StackMap locals: int[] javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            iconst_m1
            if_icmpeq 10
         9: .line 558
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifne 11
        10: .line 555
      StackMap locals:
      StackMap stack:
            iconst_0
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_1
      StackMap locals:
      StackMap stack: int
        12: istore 4 /* makeInvisible */
        start local 4 // boolean makeInvisible
        13: .line 559
            aload 2 /* changedIndexs */
            arraylength
            iconst_1
            isub
            istore 5 /* counter */
        start local 5 // int counter
        14: goto 26
        15: .line 561
      StackMap locals: int int
      StackMap stack:
            aload 3 /* changedParentNode */
        16: .line 562
            aload 2 /* changedIndexs */
            iload 5 /* counter */
            iaload
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildAt:(I)Ljavax/swing/tree/TreeNode;
        17: .line 561
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 7 /* removedNode */
        start local 7 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode removedNode
        18: .line 563
            aload 7 /* removedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifeq 20
        19: .line 564
            aload 7 /* removedNode */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.collapse:(Z)V
        20: .line 568
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent int[] javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int int top javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            iload 4 /* makeInvisible */
            ifeq 24
        21: .line 569
            aload 7 /* removedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            istore 6 /* removedRow */
        start local 6 // int removedRow
        22: .line 570
            iload 6 /* removedRow */
            iconst_m1
            if_icmpeq 24
        23: .line 571
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            iload 6 /* removedRow */
            invokevirtual java.util.Vector.removeElementAt:(I)V
        end local 6 // int removedRow
        24: .line 574
      StackMap locals:
      StackMap stack:
            aload 3 /* changedParentNode */
            aload 2 /* changedIndexs */
            iload 5 /* counter */
            iaload
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.remove:(I)V
        25: .line 560
            iinc 5 /* counter */ -1
        end local 7 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode removedNode
        26: .line 559
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent int[] javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int int
      StackMap stack:
            iload 5 /* counter */
            ifge 15
        27: .line 576
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildCount:()I
            ifne 32
        28: .line 578
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:()V
        29: .line 579
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifeq 32
        30: .line 580
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isLeaf:()Z
            ifeq 32
        31: .line 582
            aload 3 /* changedParentNode */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.collapse:(Z)V
        32: .line 585
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            ifnull 34
        33: .line 586
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            invokeinterface javax.swing.tree.TreeSelectionModel.resetRowSelection:()V
        34: .line 589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 45
            iload 4 /* makeInvisible */
            ifne 37
        35: .line 590
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildCount:()I
            ifne 45
        36: .line 591
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifeq 45
        37: .line 592
      StackMap locals:
      StackMap stack:
            aload 3 /* changedParentNode */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            if_acmpne 42
        38: .line 596
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            ifle 40
        39: .line 597
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.setYOrigin:(I)V
        40: .line 598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        41: .line 599
            goto 43
        42: .line 601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        43: .line 602
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        44: .line 603
            goto 52
        45: .line 604
      StackMap locals:
      StackMap stack:
            iload 4 /* makeInvisible */
            ifeq 52
        46: .line 605
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        end local 5 // int counter
        end local 4 // boolean makeInvisible
        47: .line 606
            goto 52
        48: .line 607
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getValue:()Ljava/lang/Object;
            invokeinterface javax.swing.tree.TreeModel.getChildCount:(Ljava/lang/Object;)I
            ifne 52
        49: .line 609
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:()V
        50: .line 610
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 52
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifeq 52
        51: .line 611
            aload 0 /* this */
            aload 3 /* changedParentNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        end local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedParentNode
        end local 2 // int[] changedIndexs
        52: .line 615
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javax.swing.event.TreeModelEvent e
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   53     0               this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   53     1                  e  Ljavax/swing/event/TreeModelEvent;
            2   52     2      changedIndexs  [I
            3   52     3  changedParentNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
           13   47     4      makeInvisible  Z
           14   47     5            counter  I
           22   24     6         removedRow  I
           18   26     7        removedNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      e     

  public void treeStructureChanged(javax.swing.event.TreeModelEvent);
    descriptor: (Ljavax/swing/event/TreeModelEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.event.TreeModelEvent e
         0: .line 630
            aload 1 /* e */
            ifnull 35
         1: .line 632
            aload 1 /* e */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getModel:()Ljavax/swing/tree/TreeModel;
            invokestatic sun.swing.SwingUtilities2.getTreePath:(Ljavax/swing/event/TreeModelEvent;Ljavax/swing/tree/TreeModel;)Ljavax/swing/tree/TreePath;
            astore 2 /* changedPath */
        start local 2 // javax.swing.tree.TreePath changedPath
         2: .line 635
            aload 0 /* this */
            aload 2 /* changedPath */
            iconst_0
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 3 /* changedNode */
        start local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedNode
         3: .line 639
            aload 3 /* changedNode */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            if_acmpeq 8
         4: .line 640
            aload 3 /* changedNode */
            ifnonnull 10
         5: .line 641
            aload 2 /* changedPath */
            ifnonnull 7
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            ifnull 7
         6: .line 642
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            invokeinterface javax.swing.tree.TreeModel.getRoot:()Ljava/lang/Object;
            ifnull 8
         7: .line 643
      StackMap locals: javax.swing.tree.TreePath javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            aload 2 /* changedPath */
            ifnull 10
            aload 2 /* changedPath */
            invokevirtual javax.swing.tree.TreePath.getPathCount:()I
            iconst_1
            if_icmpne 10
         8: .line 644
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.rebuild:(Z)V
         9: .line 645
            goto 35
        10: .line 646
      StackMap locals:
      StackMap stack:
            aload 3 /* changedNode */
            ifnull 35
        11: .line 652
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            istore 7 /* wasExpanded */
        start local 7 // boolean wasExpanded
        12: .line 653
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            iconst_m1
            if_icmpeq 13
            iconst_1
            goto 14
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent javax.swing.tree.TreePath javax.swing.tree.VariableHeightLayoutCache$TreeStateNode top top top int
      StackMap stack:
        13: iconst_0
      StackMap locals:
      StackMap stack: int
        14: istore 8 /* wasVisible */
        start local 8 // boolean wasVisible
        15: .line 655
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getParent:()Ljavax/swing/tree/TreeNode;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 6 /* parent */
        start local 6 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode parent
        16: .line 656
            aload 6 /* parent */
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getIndex:(Ljavax/swing/tree/TreeNode;)I
            istore 4 /* nodeIndex */
        start local 4 // int nodeIndex
        17: .line 657
            iload 8 /* wasVisible */
            ifeq 19
            iload 7 /* wasExpanded */
            ifeq 19
        18: .line 658
            aload 3 /* changedNode */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.collapse:(Z)V
        19: .line 660
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent javax.swing.tree.TreePath javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int top javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int int
      StackMap stack:
            iload 8 /* wasVisible */
            ifeq 21
        20: .line 661
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            aload 3 /* changedNode */
            invokevirtual java.util.Vector.removeElement:(Ljava/lang/Object;)Z
            pop
        21: .line 662
      StackMap locals:
      StackMap stack:
            aload 3 /* changedNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.removeFromParent:()V
        22: .line 663
            aload 0 /* this */
            aload 6 /* parent */
            iload 4 /* nodeIndex */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.createNodeAt:(Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            pop
        23: .line 664
            aload 6 /* parent */
            iload 4 /* nodeIndex */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildAt:(I)Ljavax/swing/tree/TreeNode;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 5 /* newNode */
        start local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode newNode
        24: .line 665
            iload 8 /* wasVisible */
            ifeq 26
            iload 7 /* wasExpanded */
            ifeq 26
        25: .line 666
            aload 5 /* newNode */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.expand:(Z)V
        26: .line 667
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent javax.swing.tree.TreePath javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int javax.swing.tree.VariableHeightLayoutCache$TreeStateNode javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int int
      StackMap stack:
            aload 5 /* newNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            istore 9 /* newIndex */
        start local 9 // int newIndex
        27: .line 668
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 33
            iload 8 /* wasVisible */
            ifeq 33
        28: .line 669
            iload 9 /* newIndex */
            ifne 30
        29: .line 670
            aload 0 /* this */
            iload 9 /* newIndex */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
            goto 31
        30: .line 672
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 9 /* newIndex */
            iconst_1
            isub
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        31: .line 673
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        32: .line 674
            goto 35
        33: .line 675
      StackMap locals:
      StackMap stack:
            iload 8 /* wasVisible */
            ifeq 35
        34: .line 676
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        end local 9 // int newIndex
        end local 8 // boolean wasVisible
        end local 7 // boolean wasExpanded
        end local 6 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode parent
        end local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode newNode
        end local 4 // int nodeIndex
        end local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode changedNode
        end local 2 // javax.swing.tree.TreePath changedPath
        35: .line 679
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.event.TreeModelEvent
      StackMap stack:
            return
        end local 1 // javax.swing.event.TreeModelEvent e
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   36     0         this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   36     1            e  Ljavax/swing/event/TreeModelEvent;
            2   35     2  changedPath  Ljavax/swing/tree/TreePath;
            3   35     3  changedNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
           17   35     4    nodeIndex  I
           24   35     5      newNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
           16   35     6       parent  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
           12   35     7  wasExpanded  Z
           15   35     8   wasVisible  Z
           27   35     9     newIndex  I
    MethodParameters:
      Name  Flags
      e     

  private void visibleNodesChanged();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
         0: .line 687
            return
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;

  private void addMapping(javax.swing.tree.VariableHeightLayoutCache$TreeStateNode);
    descriptor: (Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         0: .line 693
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treePathMapping:Ljava/util/Hashtable;
            aload 1 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getTreePath:()Ljavax/swing/tree/TreePath;
            aload 1 /* node */
            invokevirtual java.util.Hashtable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 694
            return
        end local 1 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    2     1  node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      node  

  private void removeMapping(javax.swing.tree.VariableHeightLayoutCache$TreeStateNode);
    descriptor: (Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         0: .line 700
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treePathMapping:Ljava/util/Hashtable;
            aload 1 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getTreePath:()Ljavax/swing/tree/TreePath;
            invokevirtual java.util.Hashtable.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 701
            return
        end local 1 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    2     1  node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
      Name  Flags
      node  

  private javax.swing.tree.VariableHeightLayoutCache$TreeStateNode getMapping(javax.swing.tree.TreePath);
    descriptor: (Ljavax/swing/tree/TreePath;)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
         0: .line 708
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treePathMapping:Ljava/util/Hashtable;
            aload 1 /* path */
            invokevirtual java.util.Hashtable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            areturn
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    1     1  path  Ljavax/swing/tree/TreePath;
    MethodParameters:
      Name  Flags
      path  

  private java.awt.Rectangle getBounds(int, java.awt.Rectangle);
    descriptor: (ILjava/awt/Rectangle;)Ljava/awt/Rectangle;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // int row
        start local 2 // java.awt.Rectangle placeIn
         0: .line 717
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:Z
            ifeq 2
         1: .line 718
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:(Z)V
         2: .line 720
      StackMap locals:
      StackMap stack:
            iload 1 /* row */
            iflt 4
            iload 1 /* row */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            if_icmpge 4
         3: .line 721
            aload 0 /* this */
            iload 1 /* row */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            aload 2 /* placeIn */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getNodeBounds:(Ljava/awt/Rectangle;)Ljava/awt/Rectangle;
            areturn
         4: .line 723
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.awt.Rectangle placeIn
        end local 1 // int row
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    5     1      row  I
            0    5     2  placeIn  Ljava/awt/Rectangle;
    MethodParameters:
         Name  Flags
      row      
      placeIn  

  private void rebuild(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // boolean clearSelection
         0: .line 733
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treePathMapping:Ljava/util/Hashtable;
            invokevirtual java.util.Hashtable.clear:()V
         1: .line 734
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            ifnull 19
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            invokeinterface javax.swing.tree.TreeModel.getRoot:()Ljava/lang/Object;
            dup
            astore 2 /* rootObject */
        start local 2 // java.lang.Object rootObject
         2: ifnull 19
         3: .line 735
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* rootObject */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.createNodeForValue:(Ljava/lang/Object;)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            putfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
         4: .line 736
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            new javax.swing.tree.TreePath
            dup
            aload 2 /* rootObject */
            invokespecial javax.swing.tree.TreePath.<init>:(Ljava/lang/Object;)V
            putfield javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.path:Ljavax/swing/tree/TreePath;
         5: .line 737
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.addMapping:(Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;)V
         6: .line 738
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:(I)V
         7: .line 739
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            invokevirtual java.util.Vector.removeAllElements:()V
         8: .line 740
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isRootVisible:()Z
            ifeq 10
         9: .line 741
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
        10: .line 742
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifne 12
        11: .line 743
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.expand:()V
            goto 21
        12: .line 745
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.children:()Ljava/util/Enumeration;
            astore 3 /* cursor */
        start local 3 // java.util.Enumeration cursor
        13: .line 746
            goto 15
        14: .line 747
      StackMap locals: java.util.Enumeration
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            aload 3 /* cursor */
            invokeinterface java.util.Enumeration.nextElement:()Ljava/lang/Object;
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
        15: .line 746
      StackMap locals:
      StackMap stack:
            aload 3 /* cursor */
            invokeinterface java.util.Enumeration.hasMoreElements:()Z
            ifne 14
        16: .line 749
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifne 21
        17: .line 750
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.updateYLocationsFrom:(I)V
        end local 3 // java.util.Enumeration cursor
        18: .line 752
            goto 21
        end local 2 // java.lang.Object rootObject
        19: .line 754
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            invokevirtual java.util.Vector.removeAllElements:()V
        20: .line 755
            aload 0 /* this */
            aconst_null
            putfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
        21: .line 757
      StackMap locals:
      StackMap stack:
            iload 1 /* clearSelection */
            ifeq 23
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            ifnull 23
        22: .line 758
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeSelectionModel:Ljavax/swing/tree/TreeSelectionModel;
            invokeinterface javax.swing.tree.TreeSelectionModel.clearSelection:()V
        23: .line 760
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.visibleNodesChanged:()V
        24: .line 761
            return
        end local 1 // boolean clearSelection
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   25     0            this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   25     1  clearSelection  Z
            2   19     2      rootObject  Ljava/lang/Object;
           13   18     3          cursor  Ljava/util/Enumeration;
    MethodParameters:
                Name  Flags
      clearSelection  

  private javax.swing.tree.VariableHeightLayoutCache$TreeStateNode createNodeAt(javax.swing.tree.VariableHeightLayoutCache$TreeStateNode, int);
    descriptor: (Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode parent
        start local 2 // int childIndex
         0: .line 779
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            aload 1 /* parent */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getValue:()Ljava/lang/Object;
            iload 2 /* childIndex */
            invokeinterface javax.swing.tree.TreeModel.getChild:(Ljava/lang/Object;I)Ljava/lang/Object;
            astore 4 /* newValue */
        start local 4 // java.lang.Object newValue
         1: .line 780
            aload 0 /* this */
            aload 4 /* newValue */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.createNodeForValue:(Ljava/lang/Object;)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 5 /* newChildNode */
        start local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode newChildNode
         2: .line 781
            aload 1 /* parent */
            aload 5 /* newChildNode */
            iload 2 /* childIndex */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.insert:(Ljavax/swing/tree/MutableTreeNode;I)V
         3: .line 782
            aload 5 /* newChildNode */
            iconst_m1
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:(I)V
         4: .line 783
            aload 1 /* parent */
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.root:Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            if_acmpne 5
            iconst_1
            goto 6
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int top java.lang.Object javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 3 /* isParentRoot */
        start local 3 // boolean isParentRoot
         7: .line 784
            aload 5 /* newChildNode */
            ifnull 23
            aload 1 /* parent */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isExpanded:()Z
            ifeq 23
         8: .line 785
            aload 1 /* parent */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            iconst_m1
            if_icmpne 9
            iload 3 /* isParentRoot */
            ifeq 23
         9: .line 789
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache javax.swing.tree.VariableHeightLayoutCache$TreeStateNode int int java.lang.Object javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            iload 2 /* childIndex */
            ifne 15
        10: .line 790
            iload 3 /* isParentRoot */
            ifeq 13
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isRootVisible:()Z
            ifne 13
        11: .line 791
            iconst_0
            istore 6 /* newRow */
        start local 6 // int newRow
        12: goto 22
        end local 6 // int newRow
        13: .line 793
      StackMap locals:
      StackMap stack:
            aload 1 /* parent */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            iconst_1
            iadd
            istore 6 /* newRow */
        start local 6 // int newRow
        14: .line 794
            goto 22
        end local 6 // int newRow
        15: .line 795
      StackMap locals:
      StackMap stack:
            iload 2 /* childIndex */
            aload 1 /* parent */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildCount:()I
            if_icmpne 18
        16: .line 796
            aload 1 /* parent */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getLastVisibleNode:()Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            iconst_1
            iadd
            istore 6 /* newRow */
        start local 6 // int newRow
        17: goto 22
        end local 6 // int newRow
        18: .line 800
      StackMap locals:
      StackMap stack:
            aload 1 /* parent */
        19: .line 801
            iload 2 /* childIndex */
            iconst_1
            isub
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildAt:(I)Ljavax/swing/tree/TreeNode;
        20: .line 800
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 7 /* previousNode */
        start local 7 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode previousNode
        21: .line 802
            aload 7 /* previousNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getLastVisibleNode:()Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getRow:()I
            iconst_1
            iadd
            istore 6 /* newRow */
        end local 7 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode previousNode
        start local 6 // int newRow
        22: .line 804
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            aload 5 /* newChildNode */
            iload 6 /* newRow */
            invokevirtual java.util.Vector.insertElementAt:(Ljava/lang/Object;I)V
        end local 6 // int newRow
        23: .line 806
      StackMap locals:
      StackMap stack:
            aload 5 /* newChildNode */
            areturn
        end local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode newChildNode
        end local 4 // java.lang.Object newValue
        end local 3 // boolean isParentRoot
        end local 2 // int childIndex
        end local 1 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode parent
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   24     0          this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   24     1        parent  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            0   24     2    childIndex  I
            7   24     3  isParentRoot  Z
            1   24     4      newValue  Ljava/lang/Object;
            2   24     5  newChildNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
           12   13     6        newRow  I
           14   15     6        newRow  I
           17   18     6        newRow  I
           22   23     6        newRow  I
           21   22     7  previousNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
            Name  Flags
      parent      
      childIndex  

  private javax.swing.tree.VariableHeightLayoutCache$TreeStateNode getNodeForPath(javax.swing.tree.TreePath, boolean, boolean);
    descriptor: (Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=9, args_size=4
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath path
        start local 2 // boolean onlyIfVisible
        start local 3 // boolean shouldCreate
         0: .line 817
            aload 1 /* path */
            ifnull 47
         1: .line 820
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getMapping:(Ljavax/swing/tree/TreePath;)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 4 /* node */
        start local 4 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         2: .line 821
            aload 4 /* node */
            ifnull 6
         3: .line 822
            iload 2 /* onlyIfVisible */
            ifeq 5
            aload 4 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifne 5
         4: .line 823
            aconst_null
            areturn
         5: .line 824
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            aload 4 /* node */
            areturn
         6: .line 830
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.tempStacks:Ljava/util/Stack;
            invokevirtual java.util.Stack.size:()I
            ifne 9
         7: .line 831
            new java.util.Stack
            dup
            invokespecial java.util.Stack.<init>:()V
            astore 5 /* paths */
        start local 5 // java.util.Stack paths
         8: .line 832
            goto 10
        end local 5 // java.util.Stack paths
         9: .line 834
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.tempStacks:Ljava/util/Stack;
            invokevirtual java.util.Stack.pop:()Ljava/lang/Object;
            checkcast java.util.Stack
            astore 5 /* paths */
        start local 5 // java.util.Stack paths
        10: .line 838
      StackMap locals: java.util.Stack
      StackMap stack:
            aload 5 /* paths */
            aload 1 /* path */
            invokevirtual java.util.Stack.push:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        11: .line 839
            aload 1 /* path */
            invokevirtual javax.swing.tree.TreePath.getParentPath:()Ljavax/swing/tree/TreePath;
            astore 1 /* path */
        12: .line 840
            aconst_null
            astore 4 /* node */
        13: .line 841
            goto 39
        14: .line 842
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* path */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getMapping:(Ljavax/swing/tree/TreePath;)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 4 /* node */
        15: .line 843
            aload 4 /* node */
            ifnull 37
        16: .line 846
            goto 32
        17: .line 847
      StackMap locals:
      StackMap stack:
            aload 5 /* paths */
            invokevirtual java.util.Stack.pop:()Ljava/lang/Object;
            checkcast javax.swing.tree.TreePath
            astore 1 /* path */
        18: .line 848
            aload 4 /* node */
            iload 3 /* shouldCreate */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getLoadedChildren:(Z)Ljava/util/Enumeration;
            pop
        19: .line 850
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
        20: .line 851
            aload 4 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getUserObject:()Ljava/lang/Object;
        21: .line 852
            aload 1 /* path */
            invokevirtual javax.swing.tree.TreePath.getLastPathComponent:()Ljava/lang/Object;
        22: .line 851
            invokeinterface javax.swing.tree.TreeModel.getIndexOfChild:(Ljava/lang/Object;Ljava/lang/Object;)I
        23: .line 850
            istore 6 /* childIndex */
        start local 6 // int childIndex
        24: .line 854
            iload 6 /* childIndex */
            iconst_m1
            if_icmpeq 27
        25: .line 855
            iload 6 /* childIndex */
            aload 4 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildCount:()I
            if_icmpge 27
        26: .line 856
            iload 2 /* onlyIfVisible */
            ifeq 29
            aload 4 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.isVisible:()Z
            ifne 29
        27: .line 857
      StackMap locals: int
      StackMap stack:
            aconst_null
            astore 4 /* node */
        28: .line 858
            goto 32
        29: .line 860
      StackMap locals:
      StackMap stack:
            aload 4 /* node */
        30: .line 861
            iload 6 /* childIndex */
        31: .line 860
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getChildAt:(I)Ljavax/swing/tree/TreeNode;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 4 /* node */
        end local 6 // int childIndex
        32: .line 846
      StackMap locals:
      StackMap stack:
            aload 4 /* node */
            ifnull 33
            aload 5 /* paths */
            invokevirtual java.util.Stack.size:()I
            ifgt 17
        33: .line 863
      StackMap locals:
      StackMap stack:
            aload 4 /* node */
            astore 8
        34: .line 870
            aload 5 /* paths */
            invokevirtual java.util.Stack.removeAllElements:()V
        35: .line 871
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.tempStacks:Ljava/util/Stack;
            aload 5 /* paths */
            invokevirtual java.util.Stack.push:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        36: .line 863
            aload 8
            areturn
        37: .line 865
      StackMap locals:
      StackMap stack:
            aload 5 /* paths */
            aload 1 /* path */
            invokevirtual java.util.Stack.push:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        38: .line 866
            aload 1 /* path */
            invokevirtual javax.swing.tree.TreePath.getParentPath:()Ljavax/swing/tree/TreePath;
            astore 1 /* path */
        39: .line 841
      StackMap locals:
      StackMap stack:
            aload 1 /* path */
            ifnonnull 14
        40: .line 868
            goto 45
        41: .line 869
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
        42: .line 870
            aload 5 /* paths */
            invokevirtual java.util.Stack.removeAllElements:()V
        43: .line 871
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.tempStacks:Ljava/util/Stack;
            aload 5 /* paths */
            invokevirtual java.util.Stack.push:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        44: .line 872
            aload 7
            athrow
        45: .line 870
      StackMap locals:
      StackMap stack:
            aload 5 /* paths */
            invokevirtual java.util.Stack.removeAllElements:()V
        46: .line 871
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.tempStacks:Ljava/util/Stack;
            aload 5 /* paths */
            invokevirtual java.util.Stack.push:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 5 // java.util.Stack paths
        end local 4 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        47: .line 876
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // boolean shouldCreate
        end local 2 // boolean onlyIfVisible
        end local 1 // javax.swing.tree.TreePath path
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   48     0           this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   48     1           path  Ljavax/swing/tree/TreePath;
            0   48     2  onlyIfVisible  Z
            0   48     3   shouldCreate  Z
            2   47     4           node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            8    9     5          paths  Ljava/util/Stack<Ljavax/swing/tree/TreePath;>;
           10   47     5          paths  Ljava/util/Stack<Ljavax/swing/tree/TreePath;>;
           24   32     6     childIndex  I
      Exception table:
        from    to  target  type
          10    34      41  any
          37    41      41  any
    MethodParameters:
               Name  Flags
      path           
      onlyIfVisible  
      shouldCreate   

  private void updateYLocationsFrom(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // int location
         0: .line 884
            iload 1 /* location */
            iflt 14
            iload 1 /* location */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            if_icmpge 14
         1: .line 888
            aload 0 /* this */
            iload 1 /* location */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 5 /* aNode */
        start local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode aNode
         2: .line 889
            aload 5 /* aNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getYOrigin:()I
            aload 5 /* aNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getPreferredHeight:()I
            iadd
            istore 4 /* newYOrigin */
        start local 4 // int newYOrigin
         3: .line 890
            iload 1 /* location */
            iconst_1
            iadd
            istore 2 /* counter */
        start local 2 // int counter
         4: aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            invokevirtual java.util.Vector.size:()I
            istore 3 /* maxCounter */
        start local 3 // int maxCounter
         5: .line 891
            goto 12
         6: .line 892
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int int int int javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
         7: .line 893
            iload 2 /* counter */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
         8: .line 892
            astore 5 /* aNode */
         9: .line 894
            aload 5 /* aNode */
            iload 4 /* newYOrigin */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.setYOrigin:(I)V
        10: .line 895
            iload 4 /* newYOrigin */
            aload 5 /* aNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getPreferredHeight:()I
            iadd
            istore 4 /* newYOrigin */
        11: .line 891
            iinc 2 /* counter */ 1
      StackMap locals:
      StackMap stack:
        12: iload 2 /* counter */
            iload 3 /* maxCounter */
        13: .line 890
            if_icmplt 6
        end local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode aNode
        end local 4 // int newYOrigin
        end local 3 // int maxCounter
        end local 2 // int counter
        14: .line 898
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int
      StackMap stack:
            return
        end local 1 // int location
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   15     1    location  I
            4   14     2     counter  I
            5   14     3  maxCounter  I
            3   14     4  newYOrigin  I
            2   14     5       aNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
          Name  Flags
      location  

  private void updateNodeSizes(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // boolean updateAll
         0: .line 912
            aload 0 /* this */
            iconst_0
            putfield javax.swing.tree.VariableHeightLayoutCache.updateNodeSizes:Z
         1: .line 913
            iconst_0
            dup
            istore 3 /* counter */
        start local 3 // int counter
         2: istore 2 /* aY */
        start local 2 // int aY
         3: aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            invokevirtual java.util.Vector.size:()I
            istore 4 /* maxCounter */
        start local 4 // int maxCounter
         4: .line 914
            goto 11
         5: .line 915
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            iload 3 /* counter */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 5 /* node */
        start local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         6: .line 916
            aload 5 /* node */
            iload 2 /* aY */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.setYOrigin:(I)V
         7: .line 917
            iload 1 /* updateAll */
            ifne 8
            aload 5 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.hasValidSize:()Z
            ifne 9
         8: .line 918
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            aload 5 /* node */
            iload 3 /* counter */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize:(I)V
         9: .line 919
      StackMap locals:
      StackMap stack:
            iload 2 /* aY */
            aload 5 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getPreferredHeight:()I
            iadd
            istore 2 /* aY */
        10: .line 914
            iinc 3 /* counter */ 1
        end local 5 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
      StackMap locals:
      StackMap stack:
        11: iload 3 /* counter */
            iload 4 /* maxCounter */
        12: .line 913
            if_icmplt 5
        13: .line 921
            return
        end local 4 // int maxCounter
        end local 3 // int counter
        end local 2 // int aY
        end local 1 // boolean updateAll
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   14     1   updateAll  Z
            3   14     2          aY  I
            2   14     3     counter  I
            4   14     4  maxCounter  I
            6   11     5        node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
           Name  Flags
      updateAll  

  private int getRowContainingYLocation(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // int location
         0: .line 929
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.isFixedRowHeight:()Z
            ifeq 6
         1: .line 930
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            ifne 3
         2: .line 931
            iconst_m1
            ireturn
         3: .line 932
      StackMap locals:
      StackMap stack:
            iconst_0
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            iconst_1
            isub
         4: .line 933
            iload 1 /* location */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowHeight:()I
            idiv
         5: .line 932
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.Math.max:(II)I
            ireturn
         6: .line 939
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            dup
            istore 2 /* max */
        start local 2 // int max
         7: ifgt 9
         8: .line 940
            iconst_m1
            ireturn
         9: .line 941
      StackMap locals: int
      StackMap stack:
            iconst_0
            dup
            istore 5 /* min */
        start local 5 // int min
        10: istore 4 /* mid */
        start local 4 // int mid
        11: .line 942
            goto 21
        12: .line 943
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int int top int int
      StackMap stack:
            iload 2 /* max */
            iload 5 /* min */
            isub
            iconst_2
            idiv
            iload 5 /* min */
            iadd
            istore 4 /* mid */
        13: .line 944
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            iload 4 /* mid */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            astore 7 /* node */
        start local 7 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        14: .line 945
            aload 7 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getYOrigin:()I
            istore 6 /* minY */
        start local 6 // int minY
        15: .line 946
            iload 6 /* minY */
            aload 7 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getPreferredHeight:()I
            iadd
            istore 3 /* maxY */
        start local 3 // int maxY
        16: .line 947
            iload 1 /* location */
            iload 6 /* minY */
            if_icmpge 19
        17: .line 948
            iload 4 /* mid */
            iconst_1
            isub
            istore 2 /* max */
        18: .line 949
            goto 21
        19: .line 950
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int int int int int int javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            iload 1 /* location */
            iload 3 /* maxY */
            if_icmplt 22
        20: .line 951
            iload 4 /* mid */
            iconst_1
            iadd
            istore 5 /* min */
        end local 7 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 6 // int minY
        end local 3 // int maxY
        21: .line 942
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int int top int int
      StackMap stack:
            iload 5 /* min */
            iload 2 /* max */
            if_icmplt 12
        22: .line 956
      StackMap locals:
      StackMap stack:
            iload 5 /* min */
            iload 2 /* max */
            if_icmpne 26
        23: .line 957
            iload 5 /* min */
            istore 4 /* mid */
        24: .line 958
            iload 4 /* mid */
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            if_icmplt 26
        25: .line 959
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            iconst_1
            isub
            istore 4 /* mid */
        26: .line 961
      StackMap locals:
      StackMap stack:
            iload 4 /* mid */
            ireturn
        end local 5 // int min
        end local 4 // int mid
        end local 2 // int max
        end local 1 // int location
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   27     0      this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   27     1  location  I
            7   27     2       max  I
           16   21     3      maxY  I
           11   27     4       mid  I
           10   27     5       min  I
           15   21     6      minY  I
           14   21     7      node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
          Name  Flags
      location  

  private void ensurePathIsExpanded(javax.swing.tree.TreePath, boolean);
    descriptor: (Ljavax/swing/tree/TreePath;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // javax.swing.tree.TreePath aPath
        start local 2 // boolean expandLast
         0: .line 971
            aload 1 /* aPath */
            ifnull 12
         1: .line 973
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.treeModel:Ljavax/swing/tree/TreeModel;
            aload 1 /* aPath */
            invokevirtual javax.swing.tree.TreePath.getLastPathComponent:()Ljava/lang/Object;
            invokeinterface javax.swing.tree.TreeModel.isLeaf:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 974
            aload 1 /* aPath */
            invokevirtual javax.swing.tree.TreePath.getParentPath:()Ljavax/swing/tree/TreePath;
            astore 1 /* aPath */
         3: .line 975
            iconst_1
            istore 2 /* expandLast */
         4: .line 977
      StackMap locals:
      StackMap stack:
            aload 1 /* aPath */
            ifnull 12
         5: .line 978
            aload 0 /* this */
            aload 1 /* aPath */
            iconst_0
         6: .line 979
            iconst_1
         7: .line 978
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNodeForPath:(Ljavax/swing/tree/TreePath;ZZ)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 3 /* lastNode */
        start local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode lastNode
         8: .line 981
            aload 3 /* lastNode */
            ifnull 12
         9: .line 982
            aload 3 /* lastNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.makeVisible:()V
        10: .line 983
            iload 2 /* expandLast */
            ifeq 12
        11: .line 984
            aload 3 /* lastNode */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.expand:()V
        end local 3 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode lastNode
        12: .line 988
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean expandLast
        end local 1 // javax.swing.tree.TreePath aPath
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0   13     1       aPath  Ljavax/swing/tree/TreePath;
            0   13     2  expandLast  Z
            8   12     3    lastNode  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    MethodParameters:
            Name  Flags
      aPath       
      expandLast  

  private javax.swing.tree.VariableHeightLayoutCache$TreeStateNode getNode(int);
    descriptor: (I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // int row
         0: .line 994
            aload 0 /* this */
            getfield javax.swing.tree.VariableHeightLayoutCache.visibleNodes:Ljava/util/Vector;
            iload 1 /* row */
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            areturn
        end local 1 // int row
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    1     1   row  I
    MethodParameters:
      Name  Flags
      row   

  private int getMaxNodeWidth();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
         0: .line 1001
            iconst_0
            istore 1 /* maxWidth */
        start local 1 // int maxWidth
         1: .line 1006
            aload 0 /* this */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getRowCount:()I
            iconst_1
            isub
            istore 3 /* counter */
        start local 3 // int counter
         2: goto 8
         3: .line 1007
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int top int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* counter */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache.getNode:(I)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
            astore 4 /* node */
        start local 4 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
         4: .line 1008
            aload 4 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getPreferredWidth:()I
            aload 4 /* node */
            invokevirtual javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.getXOrigin:()I
            iadd
            istore 2 /* nodeWidth */
        start local 2 // int nodeWidth
         5: .line 1009
            iload 2 /* nodeWidth */
            iload 1 /* maxWidth */
            if_icmple 7
         6: .line 1010
            iload 2 /* nodeWidth */
            istore 1 /* maxWidth */
         7: .line 1006
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int int int javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
      StackMap stack:
            iinc 3 /* counter */ -1
        end local 4 // javax.swing.tree.VariableHeightLayoutCache$TreeStateNode node
        end local 2 // int nodeWidth
      StackMap locals: javax.swing.tree.VariableHeightLayoutCache int top int
      StackMap stack:
         8: iload 3 /* counter */
            ifge 3
         9: .line 1012
            iload 1 /* maxWidth */
            ireturn
        end local 3 // int counter
        end local 1 // int maxWidth
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Ljavax/swing/tree/VariableHeightLayoutCache;
            1   10     1   maxWidth  I
            5    8     2  nodeWidth  I
            2   10     3    counter  I
            4    8     4       node  Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;

  private javax.swing.tree.VariableHeightLayoutCache$TreeStateNode createNodeForValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljavax/swing/tree/VariableHeightLayoutCache$TreeStateNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.swing.tree.VariableHeightLayoutCache this
        start local 1 // java.lang.Object value
         0: .line 1020
            new javax.swing.tree.VariableHeightLayoutCache$TreeStateNode
            dup
            aload 0 /* this */
            aload 1 /* value */
            invokespecial javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.<init>:(Ljavax/swing/tree/VariableHeightLayoutCache;Ljava/lang/Object;)V
            areturn
        end local 1 // java.lang.Object value
        end local 0 // javax.swing.tree.VariableHeightLayoutCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavax/swing/tree/VariableHeightLayoutCache;
            0    1     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  
}
SourceFile: "VariableHeightLayoutCache.java"
NestMembers:
  javax.swing.tree.VariableHeightLayoutCache$TreeStateNode  javax.swing.tree.VariableHeightLayoutCache$VisibleTreeStateNodeEnumeration
InnerClasses:
  public abstract NodeDimensions = javax.swing.tree.AbstractLayoutCache$NodeDimensions of javax.swing.tree.AbstractLayoutCache
  private TreeStateNode = javax.swing.tree.VariableHeightLayoutCache$TreeStateNode of javax.swing.tree.VariableHeightLayoutCache
  private VisibleTreeStateNodeEnumeration = javax.swing.tree.VariableHeightLayoutCache$VisibleTreeStateNodeEnumeration of javax.swing.tree.VariableHeightLayoutCache