本文整理了Java中org.openmrs.Obs.setInterpretation()
方法的一些代码示例,展示了Obs.setInterpretation()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Obs.setInterpretation()
方法的具体详情如下:
包路径:org.openmrs.Obs
类名称:Obs
方法名:setInterpretation
暂无
代码示例来源:origin: openmrs/openmrs-core
@Test
public void shouldSupportInterpretationProperty() throws Exception {
Obs obs = new Obs();
assertThat(obs.getInterpretation(), nullValue());
obs.setInterpretation(Obs.Interpretation.NORMAL);
assertThat(obs.getInterpretation(), is(Obs.Interpretation.NORMAL));
}
代码示例来源:origin: openmrs/openmrs-core
@Test
public void newInstance_shouldCopyMostFields() throws Exception {
Obs obs = new Obs();
obs.setStatus(Obs.Status.PRELIMINARY);
obs.setInterpretation(Obs.Interpretation.LOW);
obs.setConcept(new Concept());
obs.setValueNumeric(1.2);
Obs copy = Obs.newInstance(obs);
// these fields are not copied
assertThat(copy.getObsId(), nullValue());
assertThat(copy.getUuid(), not(obs.getUuid()));
// other fields are copied
assertThat(copy.getConcept(), is(obs.getConcept()));
assertThat(copy.getValueNumeric(), is(obs.getValueNumeric()));
assertThat(copy.getStatus(), is(obs.getStatus()));
assertThat(copy.getInterpretation(), is(obs.getInterpretation()));
// TODO test that the rest of the fields are set
}
代码示例来源:origin: openmrs/openmrs-core
newObs.setVoidReason(obsToCopy.getVoidReason());
newObs.setStatus(obsToCopy.getStatus());
newObs.setInterpretation(obsToCopy.getInterpretation());
内容来源于网络,如有侵权,请联系作者删除!