| Line | |
|---|
| 1 | /* BoardConfigEvent.as */
|
|---|
| 2 |
|
|---|
| 3 | package gov.va.med.edp.control.config
|
|---|
| 4 | {
|
|---|
| 5 | import com.adobe.cairngorm.control.CairngormEvent;
|
|---|
| 6 |
|
|---|
| 7 | import flash.events.Event;
|
|---|
| 8 |
|
|---|
| 9 | import mx.collections.ArrayCollection;
|
|---|
| 10 |
|
|---|
| 11 | public class BoardConfigEvent extends CairngormEvent
|
|---|
| 12 | {
|
|---|
| 13 | public static const EVENT_ADD_CONFIG_BOARD: String = "addBoardConfig";
|
|---|
| 14 | public static const EVENT_LOAD_CONFIG_BOARD: String = "loadBoardConfig";
|
|---|
| 15 | public static const EVENT_SAVE_CONFIG_BOARD: String = "saveBoardConfig";
|
|---|
| 16 |
|
|---|
| 17 | public var boardID: int;
|
|---|
| 18 | public var boardName: String;
|
|---|
| 19 |
|
|---|
| 20 | public function BoardConfigEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
|
|---|
| 21 | {
|
|---|
| 22 | super(type, bubbles, cancelable);
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | override public function clone():Event
|
|---|
| 26 | {
|
|---|
| 27 | return new BoardConfigEvent(type);
|
|---|
| 28 | }
|
|---|
| 29 | }
|
|---|
| 30 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.