| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.imt.intimamedia.events.report
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
-
- /**
- * Evénement de récupération des abbaques pour un utilisateur
- */
- public class AbacusEvent extends SuperEvent
- {
- private var _country : String;
-
- public function AbacusEvent( country : String, dispatcher : * = null )
- {
- super( ApplicationController.GET_ABACUS );
-
- this.country = country;
- this.dispatcher = dispatcher;
- }
-
-
- /**
- * Utilisateur transporté par l'événement
- *
- * @default null
- */
- public function get country () : String
- {
- return _country;
- }
-
- /**
- * @private
- */
- public function set country ( value : String ) : void
- {
- _country = value;
- }
- }
- }
|