TreatmentVo.as 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package com.imt.intimamedia.vo
  2. {
  3. import com.imt.intimamedia.helpers.AMFDateConverter;
  4. [RemoteClass(alias="com.imt.intimamedia.vo.TreatmentVo")]
  5. [Bindable]
  6. /**
  7. * Objet de RDV
  8. */
  9. public class TreatmentVo
  10. {
  11. private var _type : String;
  12. private var _name : String;
  13. private var _posology : String;
  14. private var _startDate : String;
  15. /**
  16. * Présence de HTA
  17. *
  18. * @default false
  19. */
  20. public function get type () : String
  21. {
  22. return _type;
  23. }
  24. /**
  25. * @private
  26. */
  27. public function set type ( value : String ) : void
  28. {
  29. _type = value;
  30. }
  31. /**
  32. * Présence de HTA
  33. *
  34. * @default false
  35. */
  36. public function get name () : String
  37. {
  38. return _name;
  39. }
  40. /**
  41. * @private
  42. */
  43. public function set name ( value : String ) : void
  44. {
  45. _name = value;
  46. }
  47. /**
  48. * Présence de HTA
  49. *
  50. * @default false
  51. */
  52. public function get posology () : String
  53. {
  54. return _posology;
  55. }
  56. /**
  57. * @private
  58. */
  59. public function set posology ( value : String ) : void
  60. {
  61. _posology = value;
  62. }
  63. /**
  64. * Date du traitement
  65. *
  66. * @default null
  67. */
  68. public function get startDate () : String
  69. {
  70. return _startDate;
  71. }
  72. /**
  73. * @private
  74. */
  75. public function set startDate ( value : String ) : void
  76. {
  77. _startDate = value;
  78. }
  79. }
  80. }