| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.imt.intimamedia.events.acquire
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
-
- /**
- * Evénement de récupération des marqueurs d'un RDV
- */
- public class GetImagesEvent extends SuperEvent
- {
- private var _appointmentId : int;
-
- public function GetImagesEvent( appointmentId : int, dispatcher : * = null )
- {
- super( ApplicationController.GET_IMAGES );
-
- this.appointmentId = appointmentId;
- this.dispatcher = dispatcher;
- }
-
- /**
- * ID du RDV transporté par l'événement
- *
- * @default null
- */
- public function get appointmentId () : int
- {
- return _appointmentId;
- }
-
- /**
- * @private
- */
- public function set appointmentId ( value : int ) : void
- {
- _appointmentId = value;
- }
- }
- }
|