class org.apache.commons.collections.map.Flat3Map$KeySet extends java.util.AbstractSet
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.collections.map.Flat3Map$KeySet
  super_class: java.util.AbstractSet
{
  private final org.apache.commons.collections.map.Flat3Map parent;
    descriptor: Lorg/apache/commons/collections/map/Flat3Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.apache.commons.collections.map.Flat3Map);
    descriptor: (Lorg/apache/commons/collections/map/Flat3Map;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
        start local 1 // org.apache.commons.collections.map.Flat3Map parent
         0: .line 872
            aload 0 /* this */
            invokespecial java.util.AbstractSet.<init>:()V
         1: .line 873
            aload 0 /* this */
            aload 1 /* parent */
            putfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
         2: .line 874
            return
        end local 1 // org.apache.commons.collections.map.Flat3Map parent
        end local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/collections/map/Flat3Map$KeySet;
            0    3     1  parent  Lorg/apache/commons/collections/map/Flat3Map;
    MethodParameters:
        Name  Flags
      parent  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
         0: .line 877
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            invokevirtual org.apache.commons.collections.map.Flat3Map.size:()I
            ireturn
        end local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/map/Flat3Map$KeySet;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
         0: .line 881
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            invokevirtual org.apache.commons.collections.map.Flat3Map.clear:()V
         1: .line 882
            return
        end local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/map/Flat3Map$KeySet;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
        start local 1 // java.lang.Object key
         0: .line 885
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.map.Flat3Map.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/map/Flat3Map$KeySet;
            0    1     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
        start local 1 // java.lang.Object key
         0: .line 889
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.map.Flat3Map.containsKey:(Ljava/lang/Object;)Z
            istore 2 /* result */
        start local 2 // boolean result
         1: .line 890
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.map.Flat3Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 891
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/collections/map/Flat3Map$KeySet;
            0    3     1     key  Ljava/lang/Object;
            1    3     2  result  Z
    MethodParameters:
      Name  Flags
      key   

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
         0: .line 895
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            getfield org.apache.commons.collections.map.Flat3Map.delegateMap:Lorg/apache/commons/collections/map/AbstractHashedMap;
            ifnull 2
         1: .line 896
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            getfield org.apache.commons.collections.map.Flat3Map.delegateMap:Lorg/apache/commons/collections/map/AbstractHashedMap;
            invokevirtual org.apache.commons.collections.map.AbstractHashedMap.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            areturn
         2: .line 898
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            invokevirtual org.apache.commons.collections.map.Flat3Map.size:()I
            ifne 4
         3: .line 899
            getstatic org.apache.commons.collections.iterators.EmptyIterator.INSTANCE:Ljava/util/Iterator;
            areturn
         4: .line 901
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections.map.Flat3Map$KeySetIterator
            dup
            aload 0 /* this */
            getfield org.apache.commons.collections.map.Flat3Map$KeySet.parent:Lorg/apache/commons/collections/map/Flat3Map;
            invokespecial org.apache.commons.collections.map.Flat3Map$KeySetIterator.<init>:(Lorg/apache/commons/collections/map/Flat3Map;)V
            areturn
        end local 0 // org.apache.commons.collections.map.Flat3Map$KeySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/collections/map/Flat3Map$KeySet;
}
SourceFile: "Flat3Map.java"
NestHost: org.apache.commons.collections.map.Flat3Map
InnerClasses:
  KeySet = org.apache.commons.collections.map.Flat3Map$KeySet of org.apache.commons.collections.map.Flat3Map
  KeySetIterator = org.apache.commons.collections.map.Flat3Map$KeySetIterator of org.apache.commons.collections.map.Flat3Map