/* RemoveLogEntryEvent.as */ package gov.va.med.edp.control { import flash.events.Event; import com.adobe.cairngorm.control.CairngormEvent; public class RemoveLogEntryEvent extends CairngormEvent { public static const EVENT_REMOVE_LOG_ENTRY: String = "removeLogEntry"; public function RemoveLogEntryEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) { super(type, bubbles, cancelable); } override public function clone():Event { return new RemoveLogEntryEvent(type); } } }