public class org.apache.commons.math3.geometry.partitioning.NodesSet<S extends org.apache.commons.math3.geometry.Space> implements java.lang.Iterable<org.apache.commons.math3.geometry.partitioning.BSPTree<S>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.geometry.partitioning.NodesSet
  super_class: java.lang.Object
{
  private java.util.List<org.apache.commons.math3.geometry.partitioning.BSPTree<S>> list;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.math3.geometry.partitioning.NodesSet.list:Ljava/util/List;
         2: .line 39
            return
        end local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/geometry/partitioning/NodesSet<TS;>;

  public void add(org.apache.commons.math3.geometry.partitioning.BSPTree<S>);
    descriptor: (Lorg/apache/commons/math3/geometry/partitioning/BSPTree;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
        start local 1 // org.apache.commons.math3.geometry.partitioning.BSPTree node
         0: .line 46
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.NodesSet.list:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.apache.commons.math3.geometry.partitioning.NodesSet org.apache.commons.math3.geometry.partitioning.BSPTree top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.geometry.partitioning.BSPTree
            astore 2 /* existing */
        start local 2 // org.apache.commons.math3.geometry.partitioning.BSPTree existing
         2: .line 47
            aload 1 /* node */
            aload 2 /* existing */
            if_acmpne 4
         3: .line 49
            return
        end local 2 // org.apache.commons.math3.geometry.partitioning.BSPTree existing
         4: .line 46
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 54
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.NodesSet.list:Ljava/util/List;
            aload 1 /* node */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         6: .line 56
            return
        end local 1 // org.apache.commons.math3.geometry.partitioning.BSPTree node
        end local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/apache/commons/math3/geometry/partitioning/NodesSet<TS;>;
            0    7     1      node  Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;
            2    4     2  existing  Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;
    Signature: (Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;)V
    MethodParameters:
      Name  Flags
      node  final

  public void addAll(java.lang.Iterable<org.apache.commons.math3.geometry.partitioning.BSPTree<S>>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
        start local 1 // java.lang.Iterable iterator
         0: .line 62
            aload 1 /* iterator */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: org.apache.commons.math3.geometry.partitioning.NodesSet java.lang.Iterable top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.geometry.partitioning.BSPTree
            astore 2 /* node */
        start local 2 // org.apache.commons.math3.geometry.partitioning.BSPTree node
         2: .line 63
            aload 0 /* this */
            aload 2 /* node */
            invokevirtual org.apache.commons.math3.geometry.partitioning.NodesSet.add:(Lorg/apache/commons/math3/geometry/partitioning/BSPTree;)V
        end local 2 // org.apache.commons.math3.geometry.partitioning.BSPTree node
         3: .line 62
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 65
            return
        end local 1 // java.lang.Iterable iterator
        end local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/commons/math3/geometry/partitioning/NodesSet<TS;>;
            0    5     1  iterator  Ljava/lang/Iterable<Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;>;
            2    3     2      node  Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;
    Signature: (Ljava/lang/Iterable<Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;>;)V
    MethodParameters:
          Name  Flags
      iterator  final

  public java.util.Iterator<org.apache.commons.math3.geometry.partitioning.BSPTree<S>> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
         0: .line 69
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.NodesSet.list:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.NodesSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/geometry/partitioning/NodesSet<TS;>;
    Signature: ()Ljava/util/Iterator<Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;>;
}
Signature: <S::Lorg/apache/commons/math3/geometry/Space;>Ljava/lang/Object;Ljava/lang/Iterable<Lorg/apache/commons/math3/geometry/partitioning/BSPTree<TS;>;>;
SourceFile: "NodesSet.java"