Rev | Line | |
---|
[1227] | 1 | /* AddBedEvent.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 | public class AddBedEvent extends CairngormEvent
|
---|
| 10 | {
|
---|
| 11 | public static const EVENT_ADD_BED: String = "addBed"
|
---|
| 12 |
|
---|
| 13 | public var newIndex: int;
|
---|
| 14 |
|
---|
| 15 | public function AddBedEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
|
---|
| 16 | {
|
---|
| 17 | super(type, bubbles, cancelable);
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | override public function clone():Event
|
---|
| 21 | {
|
---|
| 22 | return new AddBedEvent(type);
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.