/* InitLogAreaEvent.as */ package gov.va.med.edp.control { import flash.events.Event; import com.adobe.cairngorm.control.CairngormEvent; import gov.va.med.edp.vo.LogEntryVO; public class InitLogAreaEvent extends CairngormEvent { public static const EVENT_INIT_LOG_AREA:String = "initLogArea"; public var area: int; public var logEntrySave: LogEntryVO; public function InitLogAreaEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) { super(type, bubbles, cancelable); } override public function clone():Event { return new InitLogAreaEvent(type); } } }