| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- package com.imt.intimamedia.vo
- {
- [RemoteClass(alias="com.imt.intimamedia.vo.ImtResultVo")]
- [Bindable]
- /**
- * Objet de résultat IMT
- */
- public class ImtResultVo
- {
- private var _id : int = 0;
- private var _name : String = "";
- private var _max : Number = 0;
- private var _mean : Number = 0;
- private var _standardDeviation : Number = 0;
- private var _qualityIndex : Number = 0;
- private var _distance : Number = 0;
- private var _numberOfPoints : Number = 0;
- private var _iStartx : Number = 0;
- private var _iEndx : Number = 0;
- private var _iStarty : Number = 0;
- private var _iEndy : Number = 0;
- private var _aStartx : Number = 0;
- private var _aEndx : Number = 0;
- private var _aStarty : Number = 0;
- private var _aEndy : Number = 0;
- private var _intima : Array = new Array();
- private var _adventitia : Array = new Array();
-
- /**
- * Name : Far or Near
- *
- * @default 0
- */
- public function get name () : String
- {
- return _name;
- }
-
- /**
- * @private
- */
- public function set name ( value : String ) : void
- {
- _name = value;
- }
-
- /**
- * Valeur maximum de l'EIM
- *
- * @default 0
- */
- public function get max () : Number
- {
- return _max;
- }
-
- /**
- * @private
- */
- public function set max ( value : Number ) : void
- {
- _max = value;
- }
-
- /**
- * Valeur moyenne de l'EIM
- *
- * @default 0
- */
- public function get mean () : Number
- {
- return _mean;
- }
-
- /**
- * @private
- */
- public function set mean ( value : Number ) : void
- {
- _mean = value;
- }
-
- /**
- * Valeur standard de la déviation
- *
- * @default 0
- */
- public function get standardDeviation () : Number
- {
- return _standardDeviation;
- }
-
- /**
- * @private
- */
- public function set standardDeviation ( value : Number ) : void
- {
- _standardDeviation = value;
- }
-
- /**
- * Index de qualité
- *
- * @default 0
- */
- public function get qualityIndex () : Number
- {
- return _qualityIndex;
- }
-
- /**
- * @private
- */
- public function set qualityIndex ( value : Number ) : void
- {
- _qualityIndex = value;
- }
-
- /**
- * Ditance
- *
- * @default 0
- */
- public function get distance () : Number
- {
- return _distance;
- }
-
- /**
- * @private
- */
- public function set distance ( value : Number ) : void
- {
- _distance = value;
- }
-
- /**
- * Nombre de points
- *
- * @default 0
- */
- public function get numberOfPoints () : Number
- {
- return _numberOfPoints;
- }
-
- /**
- * @private
- */
- public function set numberOfPoints ( value : Number ) : void
- {
- _numberOfPoints = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get iStartx () : Number
- {
- return _iStartx;
- }
-
- /**
- * @private
- */
- public function set iStartx ( value : Number ) : void
- {
- _iStartx = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get iEndx () : Number
- {
- return _iEndx;
- }
-
- /**
- * @private
- */
- public function set iEndx ( value : Number ) : void
- {
- _iEndx = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get iStarty () : Number
- {
- return _iStarty;
- }
-
- /**
- * @private
- */
- public function set iStarty ( value : Number ) : void
- {
- _iStarty = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get iEndy () : Number
- {
- return _iEndy;
- }
-
- /**
- * @private
- */
- public function set iEndy ( value : Number ) : void
- {
- _iEndy = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get aStartx () : Number
- {
- return _aStartx;
- }
-
- /**
- * @private
- */
- public function set aStartx ( value : Number ) : void
- {
- _aStartx = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get aEndx () : Number
- {
- return _aEndx;
- }
-
- /**
- * @private
- */
- public function set aEndx ( value : Number ) : void
- {
- _aEndx = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get aStarty () : Number
- {
- return _aStarty;
- }
-
- /**
- * @private
- */
- public function set aStarty ( value : Number ) : void
- {
- _aStarty = value;
- }
-
- /**
- *
- *
- * @default 0
- */
- public function get aEndy () : Number
- {
- return _aEndy;
- }
-
- /**
- * @private
- */
- public function set aEndy ( value : Number ) : void
- {
- _aEndy = value;
- }
- /**
- * Tableau de points de la droite intima
- *
- * @default Array
- */
- public function get intima () : Array
- {
- return _intima;
- }
-
- /**
- * @private
- */
- public function set intima ( value : Array ) : void
- {
- _intima = value;
- }
-
- /**
- * Tableau de points de la droite adventitia
- *
- * @default Array
- */
- public function get adventitia () : Array
- {
- return _adventitia;
- }
-
- /**
- * @private
- */
- public function set adventitia ( value : Array ) : void
- {
- _adventitia = value;
- }
- }
- }
|