source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/control/InitLogAreaEvent.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: 631 bytes
Line 
1/* InitLogAreaEvent.as */
2
3package gov.va.med.edp.control
4{
5 import flash.events.Event;
6 import com.adobe.cairngorm.control.CairngormEvent;
7 import gov.va.med.edp.vo.LogEntryVO;
8
9 public class InitLogAreaEvent extends CairngormEvent
10 {
11 public static const EVENT_INIT_LOG_AREA:String = "initLogArea";
12
13 public var area: int;
14 public var logEntrySave: LogEntryVO;
15
16 public function InitLogAreaEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
17 {
18 super(type, bubbles, cancelable);
19 }
20
21 override public function clone():Event
22 {
23 return new InitLogAreaEvent(type);
24 }
25 }
26}
Note: See TracBrowser for help on using the repository browser.