watch
Class Computation

java.lang.Object
  extended by watch.Computation

 class Computation
extends java.lang.Object

Computation model class.


Constructor Summary
Computation(Date W_Date, double D_Reference, double D_ReferenceRisks, double D_ReferenceOpportunities, double D_Imputed, double D_Remaining, double D_RemainingRisks, double D_RemainingOpportunities, double D_Planned, double D_Earned)
          Constructor.
 
Method Summary
 Date getDate()
          Date accessor.
 double getEarned()
          Earned value accessor.
 double getImputed()
          Imputed value accessor.
 double getPlanned()
          Planned value accessor.
 double getReference()
          Reference value accessor.
 double getReferenceOpportunities()
          Reference opportunities value accessor.
 double getReferenceRisks()
          Reference risks value accessor.
 double getRemaining()
          Remaining value accessor.
 double getRemainingOpportunities()
          Remaining opportunities value accessor.
 double getRemainingRisks()
          Remaining risks value accessor.
 java.lang.String toString()
          String representation of the computation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Computation

public Computation(Date W_Date,
                   double D_Reference,
                   double D_ReferenceRisks,
                   double D_ReferenceOpportunities,
                   double D_Imputed,
                   double D_Remaining,
                   double D_RemainingRisks,
                   double D_RemainingOpportunities,
                   double D_Planned,
                   double D_Earned)
Constructor.

Parameters:
W_Date - Date of the computation.
D_Reference - Reference value at this moment of the computation.
D_ReferenceRisks - Reference risks value at this moment of the computation.
D_ReferenceOpportunities - Reference opportunities at this moment of the computation.
D_Imputed - Imputed value at this moment of the computation.
D_Remaining - Remaining value at this moment of the computation.
D_RemainingRisks - Remaining risks value at this moment of the computation.
D_RemainingOpportunities - Remaining opportunities value at this moment of the computation.
D_Planned - Planned imputations value at this moment of the computation.
D_Earned - Earned value (against reference) at this moment of the computation.
Method Detail

toString

public java.lang.String toString()
String representation of the computation.

Overrides:
toString in class java.lang.Object
Returns:
The string representation of the computation.

getDate

public Date getDate()
Date accessor.

Returns:
The date of the computation.

getReference

public double getReference()
Reference value accessor.

Returns:
The reference value of the computation.

getReferenceRisks

public double getReferenceRisks()
Reference risks value accessor.

Returns:
The reference risks value of the computation.

getReferenceOpportunities

public double getReferenceOpportunities()
Reference opportunities value accessor.

Returns:
The reference opportunities value of the computation.

getImputed

public double getImputed()
Imputed value accessor.

Returns:
The imputed value of the computation.

getRemaining

public double getRemaining()
Remaining value accessor.

Returns:
The remaining value of the computation.

getRemainingRisks

public double getRemainingRisks()
Remaining risks value accessor.

Returns:
The remaining risks value of the computation.

getRemainingOpportunities

public double getRemainingOpportunities()
Remaining opportunities value accessor.

Returns:
The remaining opportunities value of the computation.

getPlanned

public double getPlanned()
Planned value accessor.

Returns:
The planned value of the computation.

getEarned

public double getEarned()
Earned value accessor.

Returns:
The earned value of the computation.