public class org.apache.commons.math3.fitting.WeightedObservedPoints implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.fitting.WeightedObservedPoints
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20130813

  private final java.util.List<org.apache.commons.math3.fitting.WeightedObservedPoint> observations;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/apache/commons/math3/fitting/WeightedObservedPoint;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
         2: .line 35
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.math3.fitting.WeightedObservedPoints.observations:Ljava/util/List;
         3: .line 29
            return
        end local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/fitting/WeightedObservedPoints;

  public void add(double, double);
    descriptor: (DD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
        start local 1 // double x
        start local 3 // double y
         0: .line 51
            aload 0 /* this */
            dconst_1
            dload 1 /* x */
            dload 3 /* y */
            invokevirtual org.apache.commons.math3.fitting.WeightedObservedPoints.add:(DDD)V
         1: .line 52
            return
        end local 3 // double y
        end local 1 // double x
        end local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/fitting/WeightedObservedPoints;
            0    2     1     x  D
            0    2     3     y  D
    MethodParameters:
      Name  Flags
      x     
      y     

  public void add(double, double, double);
    descriptor: (DDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=4
        start local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
        start local 1 // double weight
        start local 3 // double x
        start local 5 // double y
         0: .line 67
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.WeightedObservedPoints.observations:Ljava/util/List;
            new org.apache.commons.math3.fitting.WeightedObservedPoint
            dup
            dload 1 /* weight */
            dload 3 /* x */
            dload 5 /* y */
            invokespecial org.apache.commons.math3.fitting.WeightedObservedPoint.<init>:(DDD)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 68
            return
        end local 5 // double y
        end local 3 // double x
        end local 1 // double weight
        end local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/math3/fitting/WeightedObservedPoints;
            0    2     1  weight  D
            0    2     3       x  D
            0    2     5       y  D
    MethodParameters:
        Name  Flags
      weight  
      x       
      y       

  public void add(org.apache.commons.math3.fitting.WeightedObservedPoint);
    descriptor: (Lorg/apache/commons/math3/fitting/WeightedObservedPoint;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
        start local 1 // org.apache.commons.math3.fitting.WeightedObservedPoint observed
         0: .line 80
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.WeightedObservedPoints.observations:Ljava/util/List;
            aload 1 /* observed */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 81
            return
        end local 1 // org.apache.commons.math3.fitting.WeightedObservedPoint observed
        end local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/math3/fitting/WeightedObservedPoints;
            0    2     1  observed  Lorg/apache/commons/math3/fitting/WeightedObservedPoint;
    MethodParameters:
          Name  Flags
      observed  

  public java.util.List<org.apache.commons.math3.fitting.WeightedObservedPoint> toList();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
         0: .line 103
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.WeightedObservedPoints.observations:Ljava/util/List;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/WeightedObservedPoints;
    Signature: ()Ljava/util/List<Lorg/apache/commons/math3/fitting/WeightedObservedPoint;>;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
         0: .line 110
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.WeightedObservedPoints.observations:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 111
            return
        end local 0 // org.apache.commons.math3.fitting.WeightedObservedPoints this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/fitting/WeightedObservedPoints;
}
SourceFile: "WeightedObservedPoints.java"