package tripvisUI.flexlibextention { import flash.events.Event; import flexlib.scheduling.scheduleClasses.IScheduleEntry; public class EntryEvent extends Event { public var scheduleEntry: IScheduleEntry; public function EntryEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) { super(type, bubbles, cancelable); } public static const SELECT_SCHEDULE_ENTRY:String = "selectScheduleEntry"; } }