majCptMesuresEvent.as 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.imt.intimamedia.events.measures
  2. {
  3. import com.imt.flex.cairngormExtended.event.SuperEvent;
  4. import com.imt.intimamedia.control.ApplicationController;
  5. /**
  6. * Evénement de sauvegardes du compteur des mesures
  7. */
  8. public class majCptMesuresEvent extends SuperEvent
  9. {
  10. private var _comptMesures : int;
  11. private var _login : String;
  12. public function majCptMesuresEvent( login: String, comptMesures : int, dispatcher : * = null )
  13. {
  14. super( ApplicationController.MAJ_CPTMESURES );
  15. this.comptMesures = comptMesures;
  16. this.login = login;
  17. this.dispatcher = dispatcher;
  18. }
  19. /**
  20. * _userId
  21. *
  22. * @default null
  23. */
  24. public function get login () : String
  25. {
  26. return _login;
  27. }
  28. /**
  29. * @private
  30. */
  31. public function set login ( value : String ) : void
  32. {
  33. _login = value;
  34. }
  35. /**
  36. * comptMesures
  37. *
  38. * @default null
  39. */
  40. public function get comptMesures () : int
  41. {
  42. return _comptMesures;
  43. }
  44. /**
  45. * @private
  46. */
  47. public function set comptMesures ( value : int ) : void
  48. {
  49. _comptMesures = value;
  50. }
  51. }
  52. }