Line | |
---|
1 | package gov.va.med.edp.control
|
---|
2 | {
|
---|
3 | import flash.display.DisplayObject;
|
---|
4 | import flash.events.Event;
|
---|
5 |
|
---|
6 | import mx.core.UIComponent;
|
---|
7 |
|
---|
8 | public 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.