/* ChangePatientEvent.as */ package gov.va.med.edp.control { import com.adobe.cairngorm.control.CairngormEvent; import flash.events.Event; import gov.va.med.edp.pt.demog.model.PatientSelectVO; public class PatientSelectEvent extends CairngormEvent { public static const EVENT_ADD_PATIENT_TO_LOG:String = "addPatientToLog"; public var newPatient: PatientSelectVO; public function PatientSelectEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) { super(type, bubbles, cancelable); } override public function clone():Event { return new PatientSelectEvent(type); } } }