package com.imt.intimamedia.vo { [RemoteClass(alias="com.imt.intimamedia.vo.ScaleVo")] [Bindable] /** * Objet échelle de l'application */ public class ScaleVo { private var _id : int = 0; private var _value : Number; private var _length : int; private var _xFirstPoint : int; private var _yFirstPoint : int; private var _xLastPoint : int; private var _yLastPoint : int; public function ScaleVo() { } public function get id () : int { return _id; } public function set id ( value : int ) : void { _id = value; } public function get value () : Number { return _value; } public function set value ( val : Number ) : void { _value = val; } public function get length () : int { return _length; } public function set length ( value : int ) : void { _length = value; } public function get xFirstPoint () : int { return _xFirstPoint; } public function set xFirstPoint ( value : int ) : void { _xFirstPoint = value; } public function get yFirstPoint () : int { return _yFirstPoint; } public function set yFirstPoint ( value : int ) : void { _yFirstPoint = value; } public function get xLastPoint () : int { return _xLastPoint; } public function set xLastPoint ( value : int ) : void { _xLastPoint = value; } public function get yLastPoint () : int { return _yLastPoint; } public function set yLastPoint ( value : int ) : void { _yLastPoint = value; } } }