source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/vo/ColumnSpecVO.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: 616 bytes
Line 
1/* ColumnSpecVO.as */
2
3package gov.va.med.edp.vo
4{
5 import com.adobe.cairngorm.vo.IValueObject;
6
7 [Bindable]
8 public class ColumnSpecVO implements IValueObject
9 {
10 public var label: String;
11 public var attribute: String;
12 public var header: String;
13 public var width: int;
14 public var colorMap: ColorMapVO;
15
16 public function toString():String
17 {
18 var x: String =
19 "label=" + label + "\t" +
20 "attribute=" + attribute + "\t" +
21 "header=" + header + "\t" +
22 "width=" + width + "\t" +
23 "colorMap=" + ((colorMap != null) ? colorMap.id : "");
24 return x;
25 }
26
27 }
28}
Note: See TracBrowser for help on using the repository browser.