source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/vo/reports/ReportParamsVO.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 602 bytes
Line 
1/* ReportParamsVO.as */
2
3package gov.va.med.edp.vo.reports
4{
5 import com.adobe.cairngorm.vo.IValueObject;
6
7 import gov.va.med.edp.util.Vista;
8
9 [Bindable]
10 public class ReportParamsVO implements IValueObject
11 {
12 public var reportName: String;
13 public var id: String;
14 public var startDate: Date;
15 public var stopDate: Date;
16
17 public function toString():String
18 {
19 var x: String = "reportName=" + reportName + "\t" +
20 "id=" + id + "\t" +
21 "startDate=" + Vista.DatetoFM(startDate) + "\t" +
22 "stopDate=" + Vista.DatetoFM(stopDate);
23 return x;
24 }
25
26 }
27}
Note: See TracBrowser for help on using the repository browser.