source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/control/ModalDialogEvent.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: 625 bytes
Line 
1package gov.va.med.edp.control
2{
3import flash.display.DisplayObject;
4import flash.events.Event;
5
6import mx.core.UIComponent;
7
8public class ModalDialogEvent extends Event
9{
10 public static const CLOSE : String = "modalDialogClose";
11 public static const OPEN : String = "modalDialogOpen";
12
13 public var dialogPanel:UIComponent;
14
15 public function ModalDialogEvent(type:String, dialogPanel:UIComponent = null) {
16 super(type, true);
17 this.dialogPanel = dialogPanel;
18 }
19
20 override public function clone():Event {
21 return new ModalDialogEvent(type, dialogPanel);
22 }
23}
24}
Note: See TracBrowser for help on using the repository browser.