package com.imt.intimamedia.vo { import com.imt.intimamedia.helpers.AMFDateConverter; [RemoteClass(alias="com.imt.intimamedia.vo.UltraSoundScannerVo")] [Bindable] /** * Objet Echographe */ public class UltraSoundScannerVo { private var _id : int; private var _name : String = ""; private var _brand : String = ""; private var _type : String = ""; private var _age : Date; [ArrayElementType("com.imt.intimamedia.vo.ProbeVo")] private var _probes : Array = new Array(); /** * ID * * @default 0 */ public function get id () : int { return _id; } /** * @private */ public function set id ( value : int ) : void { _id = value; } /** * Nom * * @default "" */ public function get name () : String { return _name; } /** * @private */ public function set name ( value : String ) : void { _name = value; } /** * Marque * * @default "" */ public function get brand () : String { return _brand; } /** * @private */ public function set brand ( value : String ) : void { _brand = value; } /** * Type * * @default "" */ public function get type () : String { return _type; } /** * @private */ public function set type ( value : String ) : void { _type = value; } /** * Ancienneté * * @default "" */ public function get age () : Date { return _age; } /** * @private */ public function set age ( value : * ) : void { _age = AMFDateConverter.convert( value ); } /** * Fréquence * * @default Array */ public function get probes () : Array { return _probes; } /** * @private */ public function set probes ( value : Array ) : void { _probes = value; } } }