GenericObject.as 797 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.imt.intimamedia.vo
  2. {
  3. [Bindable]
  4. /**
  5. * Objet générique utilisé pour les objets AS d'affichage qui nécessitent un changement de langue
  6. */
  7. public class GenericObject
  8. {
  9. public function GenericObject()
  10. {
  11. }
  12. private var _code : String;
  13. private var _label : String;
  14. /**
  15. * Clef pour le bundle
  16. *
  17. * @default ""
  18. */
  19. public function get code () : String
  20. {
  21. return _code;
  22. }
  23. /**
  24. * @private
  25. */
  26. public function set code ( value : String ) : void
  27. {
  28. _code = value;
  29. }
  30. /**
  31. * Libellé
  32. *
  33. * @default ""
  34. */
  35. public function get label () : String
  36. {
  37. return _label;
  38. }
  39. /**
  40. * @private
  41. */
  42. public function set label ( value : String ) : void
  43. {
  44. _label = value;
  45. }
  46. }
  47. }