Line | |
---|
1 | /* ChangeBedSequenceEvent.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 ChangeBedSequenceEvent extends CairngormEvent
|
---|
10 | {
|
---|
11 | public static const EVENT_CHANGE_BED_SEQUENCE: String = "changeBedSequence"
|
---|
12 |
|
---|
13 | public var oldIndex: int;
|
---|
14 | public var newIndex: int;
|
---|
15 |
|
---|
16 | public function ChangeBedSequenceEvent(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 ChangeBedSequenceEvent(type);
|
---|
24 | }
|
---|
25 | }
|
---|
26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.