source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/control/config/ColorChangedEvent.as@ 1240

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

new version from the VA

File size: 559 bytes
Line 
1package gov.va.med.edp.control.config
2{
3 import flash.events.Event;
4
5 import gov.va.med.edp.vo.ColorSelectionVO;
6
7 public class ColorChangedEvent extends Event
8 {
9 public static var COLOR_CHANGED:String = "colorChange";
10
11 public var color:ColorSelectionVO;
12
13 public function ColorChangedEvent(color:ColorSelectionVO)
14 {
15 // pass type and set bubbles (2nd param) to true
16 super(COLOR_CHANGED, true, true);
17 this.color = color;
18 }
19 }
20}
Note: See TracBrowser for help on using the repository browser.