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