| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.imt.intimamedia.events.user
- {
- import com.imt.flex.cairngormExtended.event.SuperEvent;
- import com.imt.intimamedia.control.ApplicationController;
-
- /**
- * Evénement d'enregistrement des preferences pour les messages d'aide contextuels
- */
- public class UserHelpEvent extends SuperEvent
- {
- private var _userId : int;
- private var _help : Boolean;
-
- public function UserHelpEvent( userId : int, help : Boolean )
- {
- super( ApplicationController.USER_HELP );
-
- this.userId = userId;
- this.help = help;
- }
-
- public function get userId () : int
- {
- return _userId;
- }
-
- public function set userId ( value : int ) : void
- {
- _userId = value;
- }
-
- public function get help () : Boolean
- {
- return _help;
- }
-
- public function set help ( value : Boolean ) : void
- {
- _help = value;
- }
- }
- }
|