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