source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/control/RemoveLogEntryEvent.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 542 bytes
Line 
1/* RemoveLogEntryEvent.as */
2
3package 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.