| 123456789101112131415161718192021222324252627282930313233343536 |
- package com.imt.intimamedia.events.report
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
-
- /**
- * Evènement de sauvegarde des données pdf
- */
- public class GetDataEvent extends SuperEvent
- {
- private var _appointment : int;
-
- public function GetDataEvent( appointment : int, dispatcher : * = null )
- {
- super( ApplicationController.GET_DATA );
-
- this.appointment = appointment;
- this.dispatcher = dispatcher;
- }
-
- /**
- * ID du RDV en cours
- *
- * @default 0
- */
- public function get appointment () : int
- {
- return _appointment;
- }
-
- public function set appointment ( value : int ) : void
- {
- _appointment = value;
- }
- }
- }
|