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