Line | |
---|
1 | /* DisplayBoardEvent.as */
|
---|
2 |
|
---|
3 | package gov.va.med.edp.control
|
---|
4 | {
|
---|
5 | import com.adobe.cairngorm.control.CairngormEvent;
|
---|
6 |
|
---|
7 | import flash.events.Event;
|
---|
8 |
|
---|
9 | public class DisplayBoardEvent extends CairngormEvent
|
---|
10 | {
|
---|
11 | public static const EVENT_INIT_DISPLAY_BOARD:String = "initDisplayBoard";
|
---|
12 | public static const EVENT_REFRESH_DISPLAY_BOARD:String = "refreshDisplayBoard";
|
---|
13 |
|
---|
14 | public var name: String;
|
---|
15 |
|
---|
16 | public function DisplayBoardEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
|
---|
17 | {
|
---|
18 | super(type, bubbles, cancelable);
|
---|
19 | }
|
---|
20 |
|
---|
21 | override public function clone():Event
|
---|
22 | {
|
---|
23 | return new DisplayBoardEvent(type);
|
---|
24 | }
|
---|
25 | }
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.