Line | |
---|
1 | /* RemoveLogEntryEvent.as */
|
---|
2 |
|
---|
3 | package gov.va.med.edp.control
|
---|
4 | {
|
---|
5 | import flash.events.Event;
|
---|
6 | import com.adobe.cairngorm.control.CairngormEvent;
|
---|
7 |
|
---|
8 | public class RemoveLogEntryEvent extends CairngormEvent
|
---|
9 | {
|
---|
10 | public static const EVENT_REMOVE_LOG_ENTRY: String = "removeLogEntry";
|
---|
11 |
|
---|
12 | public function RemoveLogEntryEvent(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 RemoveLogEntryEvent(type);
|
---|
20 | }
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.