| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.imt.intimamedia.events.user
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
- import com.imt.intimamedia.vo.MessageVo;
-
- /**
- * Evénement de post d'un formulaire
- */
- public class PostEvent extends SuperEvent
- {
- private var _msg : MessageVo;
-
- public function PostEvent( msg : MessageVo, dispatcher : * = null )
- {
- super( ApplicationController.USER_POST );
-
- this.msg = msg;
- this.dispatcher = dispatcher;
- }
-
- /**
- * Message transporté par l'événement
- *
- * @default null
- */
- public function get msg () : MessageVo
- {
- return _msg;
- }
-
- /**
- * @private
- */
- public function set msg ( value : MessageVo ) : void
- {
- _msg = value;
- }
- }
- }
|