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