| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.imt.intimamedia.vo
- {
- [Bindable]
- /**
- * Objet générique utilisé pour les objets AS d'affichage qui nécessitent un changement de langue
- */
- public class GenericObject
- {
- public function GenericObject()
- {
- }
-
- private var _code : String;
- private var _label : String;
-
- /**
- * Clef pour le bundle
- *
- * @default ""
- */
- public function get code () : String
- {
- return _code;
- }
-
- /**
- * @private
- */
- public function set code ( value : String ) : void
- {
- _code = value;
- }
-
- /**
- * Libellé
- *
- * @default ""
- */
- public function get label () : String
- {
- return _label;
- }
-
- /**
- * @private
- */
- public function set label ( value : String ) : void
- {
- _label = value;
- }
- }
- }
|