wrapper
Class Estimates

java.lang.Object
  |
  +--wrapper.Estimates

public class Estimates
extends java.lang.Object

Data structure that contains which estimates are required and then gets filled with the required estimates.


Field Summary
 double datavolumeAccuracy
          Accuracy of the value for data volume
 boolean datavolumeProvided
          Value for data volume estimation is provided by megamodule
 boolean datavolumeRequired
          Cost estimation for data volume is required by clien
 int datavolumeValue
          Estimated value for data volume
 double feeAccuracy
          Accuracy of the value for fee
 boolean feeProvided
          Value for fee estimation is provided by megamodule
 boolean feeRequired
          Cost estimation for fee is required by clien
 int feeValue
          Estimated value for fee
 double timeAccuracy
          Accuracy of the value for execution time
 boolean timeProvided
          Value for execution time estimation is provided by megamodule
 boolean timeRequired
          Cost estimation for execution time is required by client
 int timeValue
          Estimated value for execution time
 
Constructor Summary
Estimates()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

timeRequired

public boolean timeRequired
Cost estimation for execution time is required by client

feeRequired

public boolean feeRequired
Cost estimation for fee is required by clien

datavolumeRequired

public boolean datavolumeRequired
Cost estimation for data volume is required by clien

timeProvided

public boolean timeProvided
Value for execution time estimation is provided by megamodule

feeProvided

public boolean feeProvided
Value for fee estimation is provided by megamodule

datavolumeProvided

public boolean datavolumeProvided
Value for data volume estimation is provided by megamodule

timeValue

public int timeValue
Estimated value for execution time

feeValue

public int feeValue
Estimated value for fee

datavolumeValue

public int datavolumeValue
Estimated value for data volume

timeAccuracy

public double timeAccuracy
Accuracy of the value for execution time

feeAccuracy

public double feeAccuracy
Accuracy of the value for fee

datavolumeAccuracy

public double datavolumeAccuracy
Accuracy of the value for data volume
Constructor Detail

Estimates

public Estimates()