com.nedap.archie.adl14.aom14.CDVQuantity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aom Show documentation
Show all versions of aom Show documentation
An OpenEHR archetype object model implementation, plus parser
package com.nedap.archie.adl14.aom14;
import com.nedap.archie.base.terminology.TerminologyCode;
import java.util.Map;
public class CDVQuantity {
private TerminologyCode property;
private Map list;
//TODO: assumed value, which is a CDVQuantityItem without the intervals. or actual dv_quantity, but not reachable here
private CDVQuantityAssumedValue assumedValue;
public TerminologyCode getProperty() {
return property;
}
public void setProperty(TerminologyCode property) {
this.property = property;
}
public Map getList() {
return list;
}
public void setList(Map list) {
this.list = list;
}
public CDVQuantityAssumedValue getAssumedValue() {
return assumedValue;
}
public void setAssumedValue(CDVQuantityAssumedValue assumedValue) {
this.assumedValue = assumedValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy