| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.imt.intimamedia.events.patient
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
- import com.imt.intimamedia.vo.PatientVo;
-
- /**
- */
- public class UpdatePatientEvent extends SuperEvent
- {
- private var _patient : PatientVo;
-
- public function UpdatePatientEvent( patient : PatientVo, dispatcher : * = null )
- {
- super( ApplicationController.UPDATE_PATIENT );
-
- this.patient = patient;
- this.dispatcher = dispatcher;
- }
-
- /**
- * Critères de recherche transporté par l'événement
- *
- * @default null
- */
- public function get patient () : PatientVo
- {
- return _patient;
- }
-
- /**
- * @private
- */
- public function set patient ( value : PatientVo ) : void
- {
- _patient = value;
- }
- }
- }
|