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


Java PatientGoalVo.setTarget方法代码示例

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


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

示例1: addNewTargetToSelectedGoal

import ims.clinical.vo.PatientGoalVo; //导入方法依赖的package包/类
/**
 * Function used to temporarily add a target to a goal
 */
private boolean addNewTargetToSelectedGoal()
{
	// Not only the local context containing the selected object needs to be
	// a PatientGoal,
	// but also in the grid on the form a row must be selected, and that row
	// value must be of type PatientGoal

	// Check for a selected PatientGoal
	if (!(form.getLocalContext().getSelectedRowValue() instanceof PatientGoalVo))
		throw new CodingRuntimeException("Major Logical Error - Can only add a PatientGoalTarget to a PatientGoal");

	// Check for a selected row
	if (form.grdTarget().getSelectedRow() != null && !(form.grdTarget().getSelectedRow().getValue() instanceof PatientGoalRefVo))
		throw new CodingRuntimeException("Major Logical Error - Can only add a PatientGoalTarget to a selected Patient Goal");

	// Get a PatientGoalTargetVo from screen data
	PatientGoalTargetVo patientGoalTarget = populatePatientGoalTargetFromScreen();

	// Validate PatientGoalTarget VO obtained from screen data
	String[] errors = patientGoalTarget.validate();

	if (errors != null && errors.length > 0)
	{
		engine.showErrors(errors);
		return false;
	}

	// Add a child row to currently selected row with PatientGoalTarget
	// value
	grdTargetRow newRow = form.grdTarget().getSelectedRow().getRows().newRow();
	setPatientGoalTargetRow(newRow, patientGoalTarget);

	// Set background color for new row
	newRow.setBackColor(Color.Bisque);

	// Get PatientGoalVo from local context
	PatientGoalVo patientGoal = (PatientGoalVo) form.getLocalContext().getSelectedRowValue();

	// Check PatientGoal target collection - create a new collection if need
	// to
	if (!patientGoal.getTargetIsNotNull())
	{
		patientGoal.setTarget(new PatientGoalTargetVoCollection());
	}

	// Add target to selected PatientGoal
	patientGoal.getTarget().add(patientGoalTarget);

	return true;
}
 
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:54,代码来源:Logic.java


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