FamilyHistoryVo.as 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. package com.imt.intimamedia.vo
  2. {
  3. import com.imt.intimamedia.helpers.AMFDateConverter;
  4. [RemoteClass(alias="com.imt.intimamedia.vo.FamilyHistoryVo")]
  5. [Bindable]
  6. /**
  7. * Objet des antécédents familiaux
  8. */
  9. public class FamilyHistoryVo
  10. {
  11. private var _fatherCoronaryPathology : Boolean = false;
  12. private var _fatherCoronaryPathologyAge : int = 0;
  13. private var _motherCoronaryPathology : Boolean = false;
  14. private var _motherCoronaryPathologyAge : int = 0;
  15. private var _bsCoronaryPathology : Boolean = false;
  16. private var _bsCoronaryPathologyAge : int = 0;
  17. private var _fatherVascularPathology : Boolean = false;
  18. private var _fatherVascularPathologyAge : int = 0;
  19. private var _motherVascularPathology : Boolean = false;
  20. private var _motherVascularPathologyAge : int = 0;
  21. private var _bsVascularPathology : Boolean = false;
  22. private var _bsVascularPathologyAge : int = 0;
  23. /**
  24. * Présence de pathologies coronaires du père
  25. *
  26. * @default false
  27. */
  28. public function get fatherCoronaryPathology () : Boolean
  29. {
  30. return _fatherCoronaryPathology;
  31. }
  32. /**
  33. * @private
  34. */
  35. public function set fatherCoronaryPathology ( value : Boolean ) : void
  36. {
  37. _fatherCoronaryPathology = value;
  38. }
  39. /**
  40. * Durée des pathologies coronaires du père
  41. *
  42. * @default false
  43. */
  44. public function get fatherCoronaryPathologyAge () : int
  45. {
  46. return _fatherCoronaryPathologyAge;
  47. }
  48. /**
  49. * @private
  50. */
  51. public function set fatherCoronaryPathologyAge ( value : int ) : void
  52. {
  53. _fatherCoronaryPathologyAge = value;
  54. }
  55. /**
  56. * Présence de pathologies coronaires de la mère
  57. *
  58. * @default false
  59. */
  60. public function get motherCoronaryPathology () : Boolean
  61. {
  62. return _motherCoronaryPathology;
  63. }
  64. /**
  65. * @private
  66. */
  67. public function set motherCoronaryPathology ( value : Boolean ) : void
  68. {
  69. _motherCoronaryPathology = value;
  70. }
  71. /**
  72. * Durée des pathologies coronaires de la mère
  73. *
  74. * @default false
  75. */
  76. public function get motherCoronaryPathologyAge () : int
  77. {
  78. return _motherCoronaryPathologyAge;
  79. }
  80. /**
  81. * @private
  82. */
  83. public function set motherCoronaryPathologyAge ( value : int ) : void
  84. {
  85. _motherCoronaryPathologyAge = value;
  86. }
  87. /**
  88. * Présence de pathologies coronaires des frères et soeurs
  89. *
  90. * @default false
  91. */
  92. public function get bsCoronaryPathology () : Boolean
  93. {
  94. return _bsCoronaryPathology;
  95. }
  96. /**
  97. * @private
  98. */
  99. public function set bsCoronaryPathology ( value : Boolean ) : void
  100. {
  101. _bsCoronaryPathology = value;
  102. }
  103. /**
  104. * Durée des pathologies coronaires des frères et soeurs
  105. *
  106. * @default false
  107. */
  108. public function get bsCoronaryPathologyAge () : int
  109. {
  110. return _bsCoronaryPathologyAge;
  111. }
  112. /**
  113. * @private
  114. */
  115. public function set bsCoronaryPathologyAge ( value : int ) : void
  116. {
  117. _bsCoronaryPathologyAge = value;
  118. }
  119. /**
  120. * Présence de pathologies vasculaires du père
  121. *
  122. * @default false
  123. */
  124. public function get fatherVascularPathology () : Boolean
  125. {
  126. return _fatherVascularPathology;
  127. }
  128. /**
  129. * @private
  130. */
  131. public function set fatherVascularPathology ( value : Boolean ) : void
  132. {
  133. _fatherVascularPathology = value;
  134. }
  135. /**
  136. * Durée des pathologies vasculaires du père
  137. *
  138. * @default false
  139. */
  140. public function get fatherVascularPathologyAge () : int
  141. {
  142. return _fatherVascularPathologyAge;
  143. }
  144. /**
  145. * @private
  146. */
  147. public function set fatherVascularPathologyAge ( value : int ) : void
  148. {
  149. _fatherVascularPathologyAge = value;
  150. }
  151. /**
  152. * Présence de pathologies vasculaires de la mère
  153. *
  154. * @default false
  155. */
  156. public function get motherVascularPathology () : Boolean
  157. {
  158. return _motherVascularPathology;
  159. }
  160. /**
  161. * @private
  162. */
  163. public function set motherVascularPathology ( value : Boolean ) : void
  164. {
  165. _motherVascularPathology = value;
  166. }
  167. /**
  168. * Durée des pathologies vasculaires de la mère
  169. *
  170. * @default false
  171. */
  172. public function get motherVascularPathologyAge () : int
  173. {
  174. return _motherVascularPathologyAge;
  175. }
  176. /**
  177. * @private
  178. */
  179. public function set motherVascularPathologyAge ( value : int ) : void
  180. {
  181. _motherVascularPathologyAge = value;
  182. }
  183. /**
  184. * Présence de pathologies vasculaires des frères et soeurs
  185. *
  186. * @default false
  187. */
  188. public function get bsVascularPathology () : Boolean
  189. {
  190. return _bsVascularPathology;
  191. }
  192. /**
  193. * @private
  194. */
  195. public function set bsVascularPathology ( value : Boolean ) : void
  196. {
  197. _bsVascularPathology = value;
  198. }
  199. /**
  200. * Durée des pathologies vasculaires des frères et soeurs
  201. *
  202. * @default false
  203. */
  204. public function get bsVascularPathologyAge () : int
  205. {
  206. return _bsVascularPathologyAge;
  207. }
  208. /**
  209. * @private
  210. */
  211. public function set bsVascularPathologyAge ( value : int ) : void
  212. {
  213. _bsVascularPathologyAge = value;
  214. }
  215. }
  216. }