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