source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/pt/demog/view/SelectPatientEvent.as@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 636 bytes
Line 
1package gov.va.med.edp.pt.demog.view {
2import gov.va.med.edp.pt.demog.model.PatientSelectVO;
3import flash.events.Event;
4
5public class SelectPatientEvent extends Event {
6
7 public static const EVENT_CANCEL:String = "cancel";
8 public static const EVENT_SELECT_PATIENT:String = "selectPatient";
9
10 public var patient:PatientSelectVO;
11 public var selectAndContinue:Boolean;
12
13 public function SelectPatientEvent(type:String, patient:PatientSelectVO = null, selectAndContinue:Boolean = false) {
14 super(type);
15 this.patient = patient;
16 this.selectAndContinue = selectAndContinue;
17 }
18
19}
20}
Note: See TracBrowser for help on using the repository browser.