| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.imt.intimamedia.events.measures
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
-
- /**
- * Evénement de sauvegardes du compteur des mesures
- */
- public class majCptMesuresEvent extends SuperEvent
- {
- private var _comptMesures : int;
- private var _login : String;
-
- public function majCptMesuresEvent( login: String, comptMesures : int, dispatcher : * = null )
- {
- super( ApplicationController.MAJ_CPTMESURES );
-
- this.comptMesures = comptMesures;
- this.login = login;
- this.dispatcher = dispatcher;
- }
-
- /**
- * _userId
- *
- * @default null
- */
- public function get login () : String
- {
- return _login;
- }
-
- /**
- * @private
- */
- public function set login ( value : String ) : void
- {
- _login = value;
- }
-
- /**
- * comptMesures
- *
- * @default null
- */
- public function get comptMesures () : int
- {
- return _comptMesures;
- }
-
- /**
- * @private
- */
- public function set comptMesures ( value : int ) : void
- {
- _comptMesures = value;
- }
- }
- }
|