| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.imt.intimamedia.events.acquire
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
- import com.imt.intimamedia.vo.DragAndDropVo;
-
- /**
- * Evénement de suppression des images
- */
- public class DeleteImagesEvent extends SuperEvent
- {
- private var _dragAndDropVo : DragAndDropVo;
- private var _appointment : int;
-
- public function DeleteImagesEvent( dragAndDropVo : DragAndDropVo, appointment : int, dispatcher : * = null )
- {
- super( ApplicationController.DELETE_IMAGE );
-
- this.dragAndDropVo = dragAndDropVo;
- this.appointment = appointment;
- this.dispatcher = dispatcher;
- }
-
- /**
- * Liste d'images transporté par l'événement
- *
- * @default null
- */
- public function get dragAndDropVo () : DragAndDropVo
- {
- return _dragAndDropVo;
- }
-
- /**
- * @private
- */
- public function set dragAndDropVo ( value : DragAndDropVo ) : void
- {
- _dragAndDropVo = value;
- }
-
- /**
- * ID du RDV en cours
- *
- * @default 0
- */
- public function get appointment () : int
- {
- return _appointment;
- }
-
- /**
- * @private
- */
- public function set appointment ( value : int ) : void
- {
- _appointment = value;
- }
- }
- }
|