com.danube.scrumworks.api2
Class Estimate

java.lang.Object
  extended by com.danube.scrumworks.api2.Estimate
All Implemented Interfaces:
java.io.Serializable

public final class Estimate
extends java.lang.Object
implements java.io.Serializable

Represents estimates in the API.

See Also:
Serialized Form

Constructor Summary
Estimate()
          Constructs a new Estimate.
Estimate(java.lang.Integer estimate, java.util.Date date)
          Constructs a new Estimate.
 
Method Summary
 java.util.Date getDate()
          Gets the date.
 java.lang.Integer getEstimate()
          Gets the estimate.
 void setDate(java.util.Date date)
          Sets the date.
 void setEstimate(java.lang.Integer estimate)
          Sets the estimate.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Estimate

public Estimate()
Constructs a new Estimate.


Estimate

public Estimate(java.lang.Integer estimate,
                java.util.Date date)
Constructs a new Estimate.

Parameters:
estimate - the estimate
date - the date
Method Detail

getEstimate

public java.lang.Integer getEstimate()
Gets the estimate.

Returns:
the estimate

setEstimate

public void setEstimate(java.lang.Integer estimate)
Sets the estimate.

Parameters:
estimate - the new estimate

getDate

public java.util.Date getDate()
Gets the date.

Returns:
the date

setDate

public void setDate(java.util.Date date)
Sets the date.

Parameters:
date - the new date