GetImagesEvent.as 849 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.imt.intimamedia.events.acquire
  2. {
  3. import com.imt.flex.cairngormExtended.event.SuperEvent;
  4. import com.imt.intimamedia.control.ApplicationController;
  5. /**
  6. * Evénement de récupération des marqueurs d'un RDV
  7. */
  8. public class GetImagesEvent extends SuperEvent
  9. {
  10. private var _appointmentId : int;
  11. public function GetImagesEvent( appointmentId : int, dispatcher : * = null )
  12. {
  13. super( ApplicationController.GET_IMAGES );
  14. this.appointmentId = appointmentId;
  15. this.dispatcher = dispatcher;
  16. }
  17. /**
  18. * ID du RDV transporté par l'événement
  19. *
  20. * @default null
  21. */
  22. public function get appointmentId () : int
  23. {
  24. return _appointmentId;
  25. }
  26. /**
  27. * @private
  28. */
  29. public function set appointmentId ( value : int ) : void
  30. {
  31. _appointmentId = value;
  32. }
  33. }
  34. }