當前位置: 首頁>>代碼示例>>Java>>正文


Java PatientGoalVo.getAuthoringHCPIsNotNull方法代碼示例

本文整理匯總了Java中ims.clinical.vo.PatientGoalVo.getAuthoringHCPIsNotNull方法的典型用法代碼示例。如果您正苦於以下問題:Java PatientGoalVo.getAuthoringHCPIsNotNull方法的具體用法?Java PatientGoalVo.getAuthoringHCPIsNotNull怎麽用?Java PatientGoalVo.getAuthoringHCPIsNotNull使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ims.clinical.vo.PatientGoalVo的用法示例。


在下文中一共展示了PatientGoalVo.getAuthoringHCPIsNotNull方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: populateInstanceControls

import ims.clinical.vo.PatientGoalVo; //導入方法依賴的package包/類
/**
 * Function used to populate the Instance controls It has two parameters
 * 
 * @param patientGoal -
 *            Represents PatientGoal; this parameter should never be null
 *            (pass it even when a PatientGoalTarget is selected)
 * @param patientGoalTarget -
 *            Represents PatientGoalTarget; this parameter should be null
 *            when a PatientGoal row is selected in grid
 */
private void populateInstanceControls(PatientGoalVo patientGoal, PatientGoalTargetVo patientGoalTarget)
{
	// Clear instance controls
	clearInstanceControls();

	// If patient goal is not null populate contents
	// (Should never occur)
	if (patientGoal != null)
	{
		form.ctnGoals().lyrGoals().Goal().cmbAreaOfNeed().setValue(patientGoal.getAreaOfNeed());
		form.ctnGoals().lyrGoals().Goal().cmbGoalType().setValue(patientGoal.getGoalType());
		form.ctnGoals().lyrGoals().Goal().txtGoal().setValue(patientGoal.getGoalText());
		form.ctnGoals().lyrGoals().Goal().dtimCreated().setValue(patientGoal.getCreatedDateTime());

		// For authoring HCP check if there is one present first
		if (patientGoal.getAuthoringHCPIsNotNull())
		{
			form.ctnGoals().lyrGoals().Goal().qmbAuthoringHCP().newRow(patientGoal.getAuthoringHCP(), patientGoal.getAuthoringHCP().toString());
			form.ctnGoals().lyrGoals().Goal().qmbAuthoringHCP().setValue(patientGoal.getAuthoringHCP());
		}

		form.ctnGoals().lyrGoals().Goal().dteAchieved().setValue(patientGoal.getDateAchieved());
		
		form.getLocalContext().setSelectedPatientGoalVo(patientGoal);
	}

	// If patient goal target is not null populate contents
	if (patientGoalTarget != null)
	{
		form.ctnGoals().lyrGoals().Target().txtTarget().setValue(patientGoalTarget.getTarget());
		form.ctnGoals().lyrGoals().Target().cmbLOA().setValue(patientGoalTarget.getLOA());
		form.ctnGoals().lyrGoals().Target().txtReasonNonA().setValue(patientGoalTarget.getReasonForNonA());
		form.ctnGoals().lyrGoals().Target().dteTargetDate().setValue(patientGoalTarget.getTargetDate());
		form.ctnGoals().lyrGoals().Target().dteAchievedDate().setValue(patientGoalTarget.getDateAchieved());
	}
}
 
開發者ID:oopcell,項目名稱:AvoinApotti,代碼行數:47,代碼來源:Logic.java


注:本文中的ims.clinical.vo.PatientGoalVo.getAuthoringHCPIsNotNull方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。