Line | |
---|
1 | /* ChangePatientEvent.as */
|
---|
2 |
|
---|
3 | package gov.va.med.edp.control
|
---|
4 | {
|
---|
5 | import com.adobe.cairngorm.control.CairngormEvent;
|
---|
6 |
|
---|
7 | import flash.events.Event;
|
---|
8 |
|
---|
9 | import gov.va.med.edp.pt.demog.model.PatientSelectVO;
|
---|
10 |
|
---|
11 | public class PatientSelectEvent extends CairngormEvent
|
---|
12 | {
|
---|
13 | public static const EVENT_ADD_PATIENT_TO_LOG:String = "addPatientToLog";
|
---|
14 |
|
---|
15 | public var newPatient: PatientSelectVO;
|
---|
16 |
|
---|
17 | public function PatientSelectEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
|
---|
18 | {
|
---|
19 | super(type, bubbles, cancelable);
|
---|
20 | }
|
---|
21 |
|
---|
22 | override public function clone():Event
|
---|
23 | {
|
---|
24 | return new PatientSelectEvent(type);
|
---|
25 | }
|
---|
26 | }
|
---|
27 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.