| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- package com.imt.intimamedia.vo
- {
- [RemoteClass(alias="com.imt.intimamedia.vo.MarkerVo")]
- [Bindable]
- /**
- * Objet de marquage
- */
- public class MarkerVo
- {
- public static const PLAQUE : String = "PL";
- public static const STENOSE : String = "ST";
- public static const OCCLUSION : String = "OC";
-
- public static const CAROTID : String = "CA";
- public static const ARM : String = "AR";
- public static const LEG : String = "LE";
- public static const BODY : String = "BO";
-
- public static const LEFT : String = "LEFT";
- public static const RIGHT : String = "RIGHT";
- public static const CENTER : String = "CENTER";
-
- private var _type : String;
- private var _location : String;
- private var _side : String;
- private var _xPosition : int;
- private var _yPosition : int;
- private var _uidDisplayObject : String;
-
- /**
- * Type de marqueur (sténose, plaque ou occlusion)
- *
- * @default ""
- */
- public function get type () : String
- {
- return _type;
- }
-
- /**
- * @private
- */
- public function set type ( value : String ) : void
- {
- _type = value;
- }
-
- /**
- * Localisation du marqueur
- *
- * @default ""
- */
- public function get location () : String
- {
- return _location;
- }
-
- /**
- * @private
- */
- public function set location ( value : String ) : void
- {
- _location = value;
- }
-
- /**
- * Côté du marqueur
- *
- * @default ""
- */
- public function get side () : String
- {
- return _side;
- }
-
- /**
- * @private
- */
- public function set side ( value : String ) : void
- {
- _side = value;
- }
-
- /**
- * Coordonnée X du marqueur
- *
- * @default 0
- */
- public function get xPosition () : int
- {
- return _xPosition;
- }
-
- /**
- * @private
- */
- public function set xPosition ( value : int ) : void
- {
- _xPosition = value;
- }
-
- /**
- * Coordonnée Y du marqueur
- *
- * @default 0
- */
- public function get yPosition () : int
- {
- return _yPosition;
- }
-
- /**
- * @private
- */
- public function set yPosition ( value : int ) : void
- {
- _yPosition = value;
- }
-
- /**
- * UID de l'élément graphique
- *
- * @default ""
- */
- public function get uidDisplayObject () : String
- {
- return _uidDisplayObject;
- }
-
- /**
- * @private
- */
- public function set uidDisplayObject ( value : String ) : void
- {
- _uidDisplayObject = value;
- }
-
- }
- }
|