source:
EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/vo/ColorMapVO.as@
1227
Last change on this file since 1227 was 1227, checked in by , 13 years ago | |
---|---|
File size: 402 bytes |
Line | |
---|---|
1 | /* ColorMapVO.as */ |
2 | |
3 | package gov.va.med.edp.vo |
4 | { |
5 | import com.adobe.cairngorm.vo.IValueObject; |
6 | |
7 | import mx.collections.ArrayCollection; |
8 | |
9 | [Bindable] |
10 | public class ColorMapVO implements IValueObject |
11 | { |
12 | public var id: String; |
13 | public var name: String; |
14 | public var type: String; |
15 | public var used: Boolean = false; |
16 | public var matches: ArrayCollection; // array of ColorMatchVO |
17 | } |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.