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; } } }