public class org.eclipse.jdt.internal.core.BufferCache<K> extends org.eclipse.jdt.internal.core.OverflowingLRUCache<K, org.eclipse.jdt.core.IBuffer>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.BufferCache
  super_class: org.eclipse.jdt.internal.core.OverflowingLRUCache
{
  private java.lang.ThreadLocal<java.util.List<org.eclipse.jdt.core.IBuffer>> buffersToClose;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/lang/ThreadLocal<Ljava/util/List<Lorg/eclipse/jdt/core/IBuffer;>;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.BufferCache this
        start local 1 // int size
         0: .line 33
            aload 0 /* this */
            iload 1 /* size */
            invokespecial org.eclipse.jdt.internal.core.OverflowingLRUCache.<init>:(I)V
         1: .line 27
            aload 0 /* this */
            new java.lang.ThreadLocal
            dup
            invokespecial java.lang.ThreadLocal.<init>:()V
            putfield org.eclipse.jdt.internal.core.BufferCache.buffersToClose:Ljava/lang/ThreadLocal;
         2: .line 34
            return
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.core.BufferCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/BufferCache<TK;>;
            0    3     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.BufferCache this
        start local 1 // int size
        start local 2 // int overflow
         0: .line 39
            aload 0 /* this */
            iload 1 /* size */
            iload 2 /* overflow */
            invokespecial org.eclipse.jdt.internal.core.OverflowingLRUCache.<init>:(II)V
         1: .line 27
            aload 0 /* this */
            new java.lang.ThreadLocal
            dup
            invokespecial java.lang.ThreadLocal.<init>:()V
            putfield org.eclipse.jdt.internal.core.BufferCache.buffersToClose:Ljava/lang/ThreadLocal;
         2: .line 40
            return
        end local 2 // int overflow
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.core.BufferCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jdt/internal/core/BufferCache<TK;>;
            0    3     1      size  I
            0    3     2  overflow  I
    MethodParameters:
          Name  Flags
      size      
      overflow  

  protected boolean close(org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, org.eclipse.jdt.core.IBuffer>);
    descriptor: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.BufferCache this
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         0: .line 44
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            checkcast org.eclipse.jdt.core.IBuffer
            astore 2 /* buffer */
        start local 2 // org.eclipse.jdt.core.IBuffer buffer
         1: .line 48
            aload 2 /* buffer */
            invokeinterface org.eclipse.jdt.core.IBuffer.getOwner:()Lorg/eclipse/jdt/core/IOpenable;
            checkcast org.eclipse.jdt.internal.core.Openable
            aload 2 /* buffer */
            invokevirtual org.eclipse.jdt.internal.core.Openable.canBufferBeRemovedFromCache:(Lorg/eclipse/jdt/core/IBuffer;)Z
            ifne 3
         2: .line 49
            iconst_0
            ireturn
         3: .line 51
      StackMap locals: org.eclipse.jdt.core.IBuffer
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.BufferCache.buffersToClose:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast java.util.List
            astore 3 /* buffers */
        start local 3 // java.util.List buffers
         4: .line 52
            aload 3 /* buffers */
            ifnonnull 7
         5: .line 53
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* buffers */
         6: .line 54
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.BufferCache.buffersToClose:Ljava/lang/ThreadLocal;
            aload 3 /* buffers */
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         7: .line 56
      StackMap locals: java.util.List
      StackMap stack:
            aload 3 /* buffers */
            aload 2 /* buffer */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 57
            iconst_1
            ireturn
        end local 3 // java.util.List buffers
        end local 2 // org.eclipse.jdt.core.IBuffer buffer
        end local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 0 // org.eclipse.jdt.internal.core.BufferCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lorg/eclipse/jdt/internal/core/BufferCache<TK;>;
            0    9     1    entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;Lorg/eclipse/jdt/core/IBuffer;>;
            1    9     2   buffer  Lorg/eclipse/jdt/core/IBuffer;
            4    9     3  buffers  Ljava/util/List<Lorg/eclipse/jdt/core/IBuffer;>;
    Signature: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;Lorg/eclipse/jdt/core/IBuffer;>;)Z
    MethodParameters:
       Name  Flags
      entry  

  void closeBuffers();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.BufferCache this
         0: .line 62
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.BufferCache.buffersToClose:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast java.util.List
            astore 1 /* buffers */
        start local 1 // java.util.List buffers
         1: .line 63
            aload 1 /* buffers */
            ifnonnull 3
         2: .line 64
            return
         3: .line 65
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.BufferCache.buffersToClose:Ljava/lang/ThreadLocal;
            aconst_null
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         4: .line 66
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: aload 1 /* buffers */
            invokeinterface java.util.List.size:()I
            istore 3 /* length */
        start local 3 // int length
         6: goto 9
         7: .line 67
      StackMap locals: int int
      StackMap stack:
            aload 1 /* buffers */
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.eclipse.jdt.core.IBuffer
            invokeinterface org.eclipse.jdt.core.IBuffer.close:()V
         8: .line 66
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            iload 3 /* length */
            if_icmplt 7
        end local 3 // int length
        end local 2 // int i
        10: .line 69
            return
        end local 1 // java.util.List buffers
        end local 0 // org.eclipse.jdt.internal.core.BufferCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lorg/eclipse/jdt/internal/core/BufferCache<TK;>;
            1   11     1  buffers  Ljava/util/List<Lorg/eclipse/jdt/core/IBuffer;>;
            5   10     2        i  I
            6   10     3   length  I

  protected org.eclipse.jdt.internal.core.util.LRUCache<K, org.eclipse.jdt.core.IBuffer> newInstance(int, int);
    descriptor: (II)Lorg/eclipse/jdt/internal/core/util/LRUCache;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.BufferCache this
        start local 1 // int size
        start local 2 // int newOverflow
         0: .line 73
            new org.eclipse.jdt.internal.core.BufferCache
            dup
            iload 1 /* size */
            iload 2 /* newOverflow */
            invokespecial org.eclipse.jdt.internal.core.BufferCache.<init>:(II)V
            areturn
        end local 2 // int newOverflow
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.core.BufferCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/eclipse/jdt/internal/core/BufferCache<TK;>;
            0    1     1         size  I
            0    1     2  newOverflow  I
    Signature: (II)Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;Lorg/eclipse/jdt/core/IBuffer;>;
    MethodParameters:
             Name  Flags
      size         
      newOverflow  
}
Signature: <K:Ljava/lang/Object;>Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;Lorg/eclipse/jdt/core/IBuffer;>;
SourceFile: "BufferCache.java"
InnerClasses:
  public LRUCacheEntry = org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry of org.eclipse.jdt.internal.core.util.LRUCache