当前位置: 首页>>代码示例>>Java>>正文


Java PatientGoalVo.getGoalTextIsNotNull方法代码示例

本文整理汇总了Java中ims.clinical.vo.PatientGoalVo.getGoalTextIsNotNull方法的典型用法代码示例。如果您正苦于以下问题:Java PatientGoalVo.getGoalTextIsNotNull方法的具体用法?Java PatientGoalVo.getGoalTextIsNotNull怎么用?Java PatientGoalVo.getGoalTextIsNotNull使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ims.clinical.vo.PatientGoalVo的用法示例。


在下文中一共展示了PatientGoalVo.getGoalTextIsNotNull方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setPatientGoalRow

import ims.clinical.vo.PatientGoalVo; //导入方法依赖的package包/类
/**
 * Function used to set up a GridRow with a PatientGoal value
 * 
 * @param row -
 *            the provided row to set up with PatientGoal; the row can not
 *            be null
 * @param patientGoal -
 *            PatientGoal to be set up on row
 */
private void setPatientGoalRow(grdTargetRow row, PatientGoalVo patientGoal)
{
	// Do a check on parameters
	if (patientGoal == null)
		return;

	// If a null row is provided, then it's a major logical error
	if (row == null)
		throw new CodingRuntimeException("Major Logical Error - Null row provided to set up a PatientGoal");

	// Build the display text to display for the PatientGoal
	StringBuffer displayText = new StringBuffer();

	if (patientGoal.getAreaOfNeedIsNotNull())
		displayText.append(patientGoal.getAreaOfNeed().getText());

	if (patientGoal.getGoalTypeIsNotNull())
		displayText.append(", ").append(patientGoal.getGoalType().getText());

	if (patientGoal.getCreatedDateTimeIsNotNull())
		displayText.append(", ").append(patientGoal.getCreatedDateTime());

	if (patientGoal.getGoalTextIsNotNull())
		displayText.append(", ").append(patientGoal.getGoalText());

	row.setcolTarget(displayText.toString());

	// Set up the tool tip for the row
	if (patientGoal.getGoalTextIsNotNull())
		row.setTooltip("<b>Goal:</b> " + patientGoal.getGoalText());

	// Set the row value
	row.setValue(patientGoal);

	// Set up PatientGoal row background color
	row.setBackColor(Color.LightYellow);

	// Set up PatientGoal targets (or color the row in LightYellow if it has
	// no targets)
	if (patientGoal.getTargetIsNotNull())
	{
		for (int i = 0; i < patientGoal.getTarget().size(); i++)
		{
			PatientGoalTargetVo patientGoalTarget = patientGoal.getTarget().get(i);

			// Skip null entries in collection
			if (patientGoalTarget == null)
				continue;

			setPatientGoalTargetRow(row.getRows().newRow(), patientGoalTarget);
		}

		// Expand the row
		row.setExpanded(true);
	}
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:66,代码来源:Logic.java


注:本文中的ims.clinical.vo.PatientGoalVo.getGoalTextIsNotNull方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。