ImtResultVo.as 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. package com.imt.intimamedia.vo
  2. {
  3. [RemoteClass(alias="com.imt.intimamedia.vo.ImtResultVo")]
  4. [Bindable]
  5. /**
  6. * Objet de résultat IMT
  7. */
  8. public class ImtResultVo
  9. {
  10. private var _id : int = 0;
  11. private var _name : String = "";
  12. private var _max : Number = 0;
  13. private var _mean : Number = 0;
  14. private var _standardDeviation : Number = 0;
  15. private var _qualityIndex : Number = 0;
  16. private var _distance : Number = 0;
  17. private var _numberOfPoints : Number = 0;
  18. private var _iStartx : Number = 0;
  19. private var _iEndx : Number = 0;
  20. private var _iStarty : Number = 0;
  21. private var _iEndy : Number = 0;
  22. private var _aStartx : Number = 0;
  23. private var _aEndx : Number = 0;
  24. private var _aStarty : Number = 0;
  25. private var _aEndy : Number = 0;
  26. private var _intima : Array = new Array();
  27. private var _adventitia : Array = new Array();
  28. /**
  29. * Name : Far or Near
  30. *
  31. * @default 0
  32. */
  33. public function get name () : String
  34. {
  35. return _name;
  36. }
  37. /**
  38. * @private
  39. */
  40. public function set name ( value : String ) : void
  41. {
  42. _name = value;
  43. }
  44. /**
  45. * Valeur maximum de l'EIM
  46. *
  47. * @default 0
  48. */
  49. public function get max () : Number
  50. {
  51. return _max;
  52. }
  53. /**
  54. * @private
  55. */
  56. public function set max ( value : Number ) : void
  57. {
  58. _max = value;
  59. }
  60. /**
  61. * Valeur moyenne de l'EIM
  62. *
  63. * @default 0
  64. */
  65. public function get mean () : Number
  66. {
  67. return _mean;
  68. }
  69. /**
  70. * @private
  71. */
  72. public function set mean ( value : Number ) : void
  73. {
  74. _mean = value;
  75. }
  76. /**
  77. * Valeur standard de la déviation
  78. *
  79. * @default 0
  80. */
  81. public function get standardDeviation () : Number
  82. {
  83. return _standardDeviation;
  84. }
  85. /**
  86. * @private
  87. */
  88. public function set standardDeviation ( value : Number ) : void
  89. {
  90. _standardDeviation = value;
  91. }
  92. /**
  93. * Index de qualité
  94. *
  95. * @default 0
  96. */
  97. public function get qualityIndex () : Number
  98. {
  99. return _qualityIndex;
  100. }
  101. /**
  102. * @private
  103. */
  104. public function set qualityIndex ( value : Number ) : void
  105. {
  106. _qualityIndex = value;
  107. }
  108. /**
  109. * Ditance
  110. *
  111. * @default 0
  112. */
  113. public function get distance () : Number
  114. {
  115. return _distance;
  116. }
  117. /**
  118. * @private
  119. */
  120. public function set distance ( value : Number ) : void
  121. {
  122. _distance = value;
  123. }
  124. /**
  125. * Nombre de points
  126. *
  127. * @default 0
  128. */
  129. public function get numberOfPoints () : Number
  130. {
  131. return _numberOfPoints;
  132. }
  133. /**
  134. * @private
  135. */
  136. public function set numberOfPoints ( value : Number ) : void
  137. {
  138. _numberOfPoints = value;
  139. }
  140. /**
  141. *
  142. *
  143. * @default 0
  144. */
  145. public function get iStartx () : Number
  146. {
  147. return _iStartx;
  148. }
  149. /**
  150. * @private
  151. */
  152. public function set iStartx ( value : Number ) : void
  153. {
  154. _iStartx = value;
  155. }
  156. /**
  157. *
  158. *
  159. * @default 0
  160. */
  161. public function get iEndx () : Number
  162. {
  163. return _iEndx;
  164. }
  165. /**
  166. * @private
  167. */
  168. public function set iEndx ( value : Number ) : void
  169. {
  170. _iEndx = value;
  171. }
  172. /**
  173. *
  174. *
  175. * @default 0
  176. */
  177. public function get iStarty () : Number
  178. {
  179. return _iStarty;
  180. }
  181. /**
  182. * @private
  183. */
  184. public function set iStarty ( value : Number ) : void
  185. {
  186. _iStarty = value;
  187. }
  188. /**
  189. *
  190. *
  191. * @default 0
  192. */
  193. public function get iEndy () : Number
  194. {
  195. return _iEndy;
  196. }
  197. /**
  198. * @private
  199. */
  200. public function set iEndy ( value : Number ) : void
  201. {
  202. _iEndy = value;
  203. }
  204. /**
  205. *
  206. *
  207. * @default 0
  208. */
  209. public function get aStartx () : Number
  210. {
  211. return _aStartx;
  212. }
  213. /**
  214. * @private
  215. */
  216. public function set aStartx ( value : Number ) : void
  217. {
  218. _aStartx = value;
  219. }
  220. /**
  221. *
  222. *
  223. * @default 0
  224. */
  225. public function get aEndx () : Number
  226. {
  227. return _aEndx;
  228. }
  229. /**
  230. * @private
  231. */
  232. public function set aEndx ( value : Number ) : void
  233. {
  234. _aEndx = value;
  235. }
  236. /**
  237. *
  238. *
  239. * @default 0
  240. */
  241. public function get aStarty () : Number
  242. {
  243. return _aStarty;
  244. }
  245. /**
  246. * @private
  247. */
  248. public function set aStarty ( value : Number ) : void
  249. {
  250. _aStarty = value;
  251. }
  252. /**
  253. *
  254. *
  255. * @default 0
  256. */
  257. public function get aEndy () : Number
  258. {
  259. return _aEndy;
  260. }
  261. /**
  262. * @private
  263. */
  264. public function set aEndy ( value : Number ) : void
  265. {
  266. _aEndy = value;
  267. }
  268. /**
  269. * Tableau de points de la droite intima
  270. *
  271. * @default Array
  272. */
  273. public function get intima () : Array
  274. {
  275. return _intima;
  276. }
  277. /**
  278. * @private
  279. */
  280. public function set intima ( value : Array ) : void
  281. {
  282. _intima = value;
  283. }
  284. /**
  285. * Tableau de points de la droite adventitia
  286. *
  287. * @default Array
  288. */
  289. public function get adventitia () : Array
  290. {
  291. return _adventitia;
  292. }
  293. /**
  294. * @private
  295. */
  296. public function set adventitia ( value : Array ) : void
  297. {
  298. _adventitia = value;
  299. }
  300. }
  301. }