public class org.apache.batik.ext.awt.image.rendered.LRUCache
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.batik.ext.awt.image.rendered.LRUCache
  super_class: java.lang.Object
{
  private org.apache.batik.util.DoublyLinkedList free;
    descriptor: Lorg/apache/batik/util/DoublyLinkedList;
    flags: (0x0002) ACC_PRIVATE

  private org.apache.batik.util.DoublyLinkedList used;
    descriptor: Lorg/apache/batik/util/DoublyLinkedList;
    flags: (0x0002) ACC_PRIVATE

  private int maxSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
        start local 1 // int size
         0: .line 72
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 0 /* this */
            aconst_null
            putfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
         2: .line 69
            aload 0 /* this */
            aconst_null
            putfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
         3: .line 70
            aload 0 /* this */
            iconst_0
            putfield org.apache.batik.ext.awt.image.rendered.LRUCache.maxSize:I
         4: .line 73
            iload 1 /* size */
            ifgt 5
            iconst_1
            istore 1 /* size */
         5: .line 74
      StackMap locals: org.apache.batik.ext.awt.image.rendered.LRUCache int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            putfield org.apache.batik.ext.awt.image.rendered.LRUCache.maxSize:I
         6: .line 76
            aload 0 /* this */
            new org.apache.batik.util.DoublyLinkedList
            dup
            invokespecial org.apache.batik.util.DoublyLinkedList.<init>:()V
            putfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
         7: .line 77
            aload 0 /* this */
            new org.apache.batik.util.DoublyLinkedList
            dup
            invokespecial org.apache.batik.util.DoublyLinkedList.<init>:()V
            putfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
         8: .line 79
            goto 11
         9: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
            new org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            dup
            invokespecial org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.<init>:()V
            invokevirtual org.apache.batik.util.DoublyLinkedList.add:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
        10: .line 81
            iinc 1 /* size */ -1
        11: .line 79
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            ifgt 9
        12: .line 83
            return
        end local 1 // int size
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;
            0   13     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public int getUsed();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
         0: .line 86
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getSize:()I
            ireturn
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;

  public synchronized void setSize(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
        start local 1 // int newSz
         0: .line 91
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.maxSize:I
            iload 1 /* newSz */
            if_icmpge 7
         1: .line 93
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.maxSize:I
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 94
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
            new org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            dup
            invokespecial org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.<init>:()V
            invokevirtual org.apache.batik.util.DoublyLinkedList.add:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
         4: .line 93
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            iload 1 /* newSz */
            if_icmplt 3
        end local 2 // int i
         6: .line 96
            goto 15
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.maxSize:I
            iload 1 /* newSz */
            if_icmple 15
         8: .line 98
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getSize:()I
            istore 2 /* i */
        start local 2 // int i
         9: goto 14
        10: .line 99
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getTail:()Lorg/apache/batik/util/DoublyLinkedList$Node;
            checkcast org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            astore 3 /* nde */
        start local 3 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
        11: .line 100
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            aload 3 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.remove:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
        12: .line 101
            aload 3 /* nde */
            aconst_null
            invokevirtual org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.setObj:(Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
        end local 3 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
        13: .line 98
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            iload 1 /* newSz */
            if_icmpgt 10
        end local 2 // int i
        15: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newSz */
            putfield org.apache.batik.ext.awt.image.rendered.LRUCache.maxSize:I
        16: .line 106
            return
        end local 1 // int newSz
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;
            0   17     1  newSz  I
            2    6     2      i  I
            9   15     2      i  I
           11   13     3    nde  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
    MethodParameters:
       Name  Flags
      newSz  

  public synchronized void flush();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
         0: .line 109
            goto 4
         1: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.pop:()Lorg/apache/batik/util/DoublyLinkedList$Node;
            checkcast org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            astore 1 /* nde */
        start local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
         2: .line 111
            aload 1 /* nde */
            aconst_null
            invokevirtual org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.setObj:(Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
         3: .line 112
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
            aload 1 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.add:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
        end local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
         4: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getSize:()I
            ifgt 1
         5: .line 114
            return
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;
            2    4     1   nde  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;

  public synchronized void remove(org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj);
    descriptor: (Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
        start local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj obj
         0: .line 117
            aload 1 /* obj */
            invokeinterface org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj.lruGet:()Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
            astore 2 /* nde */
        start local 2 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
         1: .line 118
            aload 2 /* nde */
            ifnonnull 2
            return
         2: .line 119
      StackMap locals: org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            aload 2 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.remove:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
         3: .line 120
            aload 2 /* nde */
            aconst_null
            invokevirtual org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.setObj:(Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
         4: .line 121
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
            aload 2 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.add:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
         5: .line 122
            return
        end local 2 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
        end local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj obj
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;
            0    6     1   obj  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;
            1    6     2   nde  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
    MethodParameters:
      Name  Flags
      obj   

  public synchronized void touch(org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj);
    descriptor: (Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
        start local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj obj
         0: .line 125
            aload 1 /* obj */
            invokeinterface org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj.lruGet:()Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
            astore 2 /* nde */
        start local 2 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
         1: .line 126
            aload 2 /* nde */
            ifnonnull 2
            return
         2: .line 127
      StackMap locals: org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            aload 2 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.touch:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
         3: .line 128
            return
        end local 2 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
        end local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj obj
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;
            0    4     1   obj  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;
            1    4     2   nde  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
    MethodParameters:
      Name  Flags
      obj   

  public synchronized void add(org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj);
    descriptor: (Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
        start local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj obj
         0: .line 131
            aload 1 /* obj */
            invokeinterface org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj.lruGet:()Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
            astore 2 /* nde */
        start local 2 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
         1: .line 134
            aload 2 /* nde */
            ifnull 4
         2: .line 135
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            aload 2 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.touch:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
         3: .line 136
            return
         4: .line 139
      StackMap locals: org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getSize:()I
            ifle 9
         5: .line 140
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.pop:()Lorg/apache/batik/util/DoublyLinkedList$Node;
            checkcast org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            astore 2 /* nde */
         6: .line 141
            aload 2 /* nde */
            aload 1 /* obj */
            invokevirtual org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.setObj:(Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
         7: .line 142
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            aload 2 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.add:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
         8: .line 143
            goto 12
         9: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getTail:()Lorg/apache/batik/util/DoublyLinkedList$Node;
            checkcast org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            astore 2 /* nde */
        10: .line 145
            aload 2 /* nde */
            aload 1 /* obj */
            invokevirtual org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.setObj:(Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;)V
        11: .line 146
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            aload 2 /* nde */
            invokevirtual org.apache.batik.util.DoublyLinkedList.touch:(Lorg/apache/batik/util/DoublyLinkedList$Node;)V
        12: .line 148
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
        end local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj obj
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;
            0   13     1   obj  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;
            1   13     2   nde  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
    MethodParameters:
      Name  Flags
      obj   

  protected synchronized void print();
    descriptor: ()V
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
         0: .line 151
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "In Use: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getSize:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         1: .line 152
            ldc " Free: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.free:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getSize:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         2: .line 151
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         3: .line 153
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getHead:()Lorg/apache/batik/util/DoublyLinkedList$Node;
            checkcast org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            astore 1 /* nde */
        start local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
         4: .line 154
            aload 1 /* nde */
            ifnonnull 5
            return
         5: .line 156
      StackMap locals: org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
      StackMap stack:
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            aload 1 /* nde */
            invokevirtual org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.getObj:()Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUObj;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/Object;)V
         6: .line 157
            aload 1 /* nde */
            invokevirtual org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode.getNext:()Lorg/apache/batik/util/DoublyLinkedList$Node;
            checkcast org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode
            astore 1 /* nde */
         7: .line 158
            aload 1 /* nde */
            aload 0 /* this */
            getfield org.apache.batik.ext.awt.image.rendered.LRUCache.used:Lorg/apache/batik/util/DoublyLinkedList;
            invokevirtual org.apache.batik.util.DoublyLinkedList.getHead:()Lorg/apache/batik/util/DoublyLinkedList$Node;
            if_acmpne 5
         8: .line 159
            return
        end local 1 // org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode nde
        end local 0 // org.apache.batik.ext.awt.image.rendered.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/batik/ext/awt/image/rendered/LRUCache;
            4    9     1   nde  Lorg/apache/batik/ext/awt/image/rendered/LRUCache$LRUNode;
}
SourceFile: "LRUCache.java"
NestMembers:
  org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode  org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj
InnerClasses:
  public LRUNode = org.apache.batik.ext.awt.image.rendered.LRUCache$LRUNode of org.apache.batik.ext.awt.image.rendered.LRUCache
  public abstract LRUObj = org.apache.batik.ext.awt.image.rendered.LRUCache$LRUObj of org.apache.batik.ext.awt.image.rendered.LRUCache
  public Node = org.apache.batik.util.DoublyLinkedList$Node of org.apache.batik.util.DoublyLinkedList