package com.imt.intimamedia.vo { import com.imt.intimamedia.helpers.AMFDateConverter; [RemoteClass(alias="com.imt.intimamedia.vo.FamilyHistoryVo")] [Bindable] /** * Objet des antécédents familiaux */ public class FamilyHistoryVo { private var _fatherCoronaryPathology : Boolean = false; private var _fatherCoronaryPathologyAge : int = 0; private var _motherCoronaryPathology : Boolean = false; private var _motherCoronaryPathologyAge : int = 0; private var _bsCoronaryPathology : Boolean = false; private var _bsCoronaryPathologyAge : int = 0; private var _fatherVascularPathology : Boolean = false; private var _fatherVascularPathologyAge : int = 0; private var _motherVascularPathology : Boolean = false; private var _motherVascularPathologyAge : int = 0; private var _bsVascularPathology : Boolean = false; private var _bsVascularPathologyAge : int = 0; /** * Présence de pathologies coronaires du père * * @default false */ public function get fatherCoronaryPathology () : Boolean { return _fatherCoronaryPathology; } /** * @private */ public function set fatherCoronaryPathology ( value : Boolean ) : void { _fatherCoronaryPathology = value; } /** * Durée des pathologies coronaires du père * * @default false */ public function get fatherCoronaryPathologyAge () : int { return _fatherCoronaryPathologyAge; } /** * @private */ public function set fatherCoronaryPathologyAge ( value : int ) : void { _fatherCoronaryPathologyAge = value; } /** * Présence de pathologies coronaires de la mère * * @default false */ public function get motherCoronaryPathology () : Boolean { return _motherCoronaryPathology; } /** * @private */ public function set motherCoronaryPathology ( value : Boolean ) : void { _motherCoronaryPathology = value; } /** * Durée des pathologies coronaires de la mère * * @default false */ public function get motherCoronaryPathologyAge () : int { return _motherCoronaryPathologyAge; } /** * @private */ public function set motherCoronaryPathologyAge ( value : int ) : void { _motherCoronaryPathologyAge = value; } /** * Présence de pathologies coronaires des frères et soeurs * * @default false */ public function get bsCoronaryPathology () : Boolean { return _bsCoronaryPathology; } /** * @private */ public function set bsCoronaryPathology ( value : Boolean ) : void { _bsCoronaryPathology = value; } /** * Durée des pathologies coronaires des frères et soeurs * * @default false */ public function get bsCoronaryPathologyAge () : int { return _bsCoronaryPathologyAge; } /** * @private */ public function set bsCoronaryPathologyAge ( value : int ) : void { _bsCoronaryPathologyAge = value; } /** * Présence de pathologies vasculaires du père * * @default false */ public function get fatherVascularPathology () : Boolean { return _fatherVascularPathology; } /** * @private */ public function set fatherVascularPathology ( value : Boolean ) : void { _fatherVascularPathology = value; } /** * Durée des pathologies vasculaires du père * * @default false */ public function get fatherVascularPathologyAge () : int { return _fatherVascularPathologyAge; } /** * @private */ public function set fatherVascularPathologyAge ( value : int ) : void { _fatherVascularPathologyAge = value; } /** * Présence de pathologies vasculaires de la mère * * @default false */ public function get motherVascularPathology () : Boolean { return _motherVascularPathology; } /** * @private */ public function set motherVascularPathology ( value : Boolean ) : void { _motherVascularPathology = value; } /** * Durée des pathologies vasculaires de la mère * * @default false */ public function get motherVascularPathologyAge () : int { return _motherVascularPathologyAge; } /** * @private */ public function set motherVascularPathologyAge ( value : int ) : void { _motherVascularPathologyAge = value; } /** * Présence de pathologies vasculaires des frères et soeurs * * @default false */ public function get bsVascularPathology () : Boolean { return _bsVascularPathology; } /** * @private */ public function set bsVascularPathology ( value : Boolean ) : void { _bsVascularPathology = value; } /** * Durée des pathologies vasculaires des frères et soeurs * * @default false */ public function get bsVascularPathologyAge () : int { return _bsVascularPathologyAge; } /** * @private */ public function set bsVascularPathologyAge ( value : int ) : void { _bsVascularPathologyAge = value; } } }