package com.imt.intimamedia.events.user { import com.imt.flex.cairngormExtended.event.SuperEvent; import com.imt.intimamedia.control.ApplicationController; /** * Evénement de recherche des villes pour un code postal */ public class SearchCitiesEvent extends SuperEvent { private var _zipCode : String; private var _country : String; public function SearchCitiesEvent( zipCode : String, country : String ) { super( ApplicationController.USER_REGISTER_FIND_CITIES ); this.zipCode = zipCode; this.country = country; } /** * Code postal transporté par l'événement * * @default null */ public function get zipCode () : String { return _zipCode; } /** * @private */ public function set zipCode ( value : String ) : void { _zipCode = 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; } } }