Line | |
---|
1 | /* TrackingEvent.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 TrackingEvent extends CairngormEvent
|
---|
10 | {
|
---|
11 | public static const EVENT_INIT_TRACKING: String = "initTracking";
|
---|
12 | public static const EVENT_CANCEL_EDIT: String = "cancelEdit";
|
---|
13 | public static const EVENT_SAVE_LOG_ENTRY: String = "saveLogEntry";
|
---|
14 | public static const EVENT_DELETE_STUB_ENTRY: String = "deleteStubEntry";
|
---|
15 | public static const EVENT_REFRESH_LOG_SELECTOR: String = "refreshLogSelector";
|
---|
16 |
|
---|
17 | public function TrackingEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
|
---|
18 | {
|
---|
19 | super(type, bubbles, cancelable);
|
---|
20 | }
|
---|
21 |
|
---|
22 | override public function clone():Event
|
---|
23 | {
|
---|
24 | return new TrackingEvent(type);
|
---|
25 | }
|
---|
26 | }
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.