| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.imt.intimamedia.events.user
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
-
- /**
- * Evénement de recherche des codes postaux pour une ville
- */
- public class SearchZipCodesEvent extends SuperEvent
- {
- private var _city : String;
- private var _country : String;
-
- public function SearchZipCodesEvent( city : String, country : String )
- {
- super( ApplicationController.USER_REGISTER_FIND_ZIPCODE );
-
- this.city = city;
- this.country = country;
- }
-
- /**
- * Ville transporté par l'événement
- *
- * @default null
- */
- public function get city () : String
- {
- return _city;
- }
-
- /**
- * @private
- */
- public function set city ( value : String ) : void
- {
- _city = value;
- }
-
- /**
- * Pays transporté par l'événement
- *
- * @default null
- */
- public function get country () : String
- {
- return _country;
- }
-
- /**
- * @private
- */
- public function set country ( value : String ) : void
- {
- _country = value;
- }
- }
- }
|