| java.lang.Object org.cougaar.planning.ldm.plan.ReportImpl
ReportImpl | public ReportImpl()(Code) | | Constructor - takes no args
|
ReportImpl | public ReportImpl(String text, Date date, UID uid)(Code) | | Constructor - takes text, date, and UID args
Parameters: text - String with text of report Parameters: date - Date associated with report (probably creation date) Parameters: uid - UID for report |
getDate | public Date getDate()(Code) | | getDate - return date associated with the report
Date associated with the report |
getText | public String getText()(Code) | | getText - return text of message
String with text of the report |
getUID | public UID getUID()(Code) | | getUID - get uid for the object
UID assigned to object |
setDate | public void setDate(Date date)(Code) | | setDate - set date associated with the report
Parameters: date - Date to be associated with the report |
setText | public void setText(String reportText)(Code) | | setText - set text for message
Parameters: reportText - String with new text |
setUID | public void setUID(UID uid)(Code) | | setUID - set uid for the object
Why is this public? Does it make sense to allow random changes to
UID?
Parameters: uid - UID assigned to object |
|
|