source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/model/ColorSet.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: 240 bytes
Line 
1package gov.va.med.edp.model
2{
3 public class ColorSet
4 {
5 public var text: uint;
6 public var back: uint;
7
8 public function ColorSet(textValue: uint, backValue: uint)
9 {
10 text = textValue;
11 back = backValue;
12 }
13 }
14}
Note: See TracBrowser for help on using the repository browser.