org.projecthusky.common.hl7cdar2.CR Maven / Gradle / Ivy
/*
* This code is made available under the terms of the Eclipse Public License v1.0
* in the github project https://github.com/project-husky/husky there you also
* find a list of the contributors and the license information.
*
* This project has been developed further and modified by the joined working group Husky
* on the basis of the eHealth Connector opensource project from June 28, 2021,
* whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
*
*/
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2020.07.09 um 01:07:39 PM CEST
//
package org.projecthusky.common.hl7cdar2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* A concept qualifier code with optionally named role. Both qualifier role and value codes must be defined by the
* coding system. For example, if SNOMED RT defines a concept "leg", a role relation "has-laterality", and another
* concept "left", the concept role relation allows to add the qualifier "has-laterality: left" to a primary code "leg"
* to construct the meaning "left leg".
*
*
*
* Java-Klasse für CR complex type.
*
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="CR">
* <complexContent>
* <extension base="{urn:hl7-org:v3}ANY">
* <sequence>
* <element name="name" type="{urn:hl7-org:v3}CV" minOccurs="0"/>
* <element name="value" type="{urn:hl7-org:v3}CD" minOccurs="0"/>
* </sequence>
* <attribute name="inverted" type="{urn:hl7-org:v3}bn" default="false" />
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CR", propOrder = {"name", "value"})
public class CR extends ANY {
protected CV name;
protected CD value;
@XmlAttribute(name = "inverted")
protected Boolean inverted;
/**
* Ruft den Wert der name-Eigenschaft ab.
*
* @return possible object is {@link CV }
*/
public CV getName() {
return name;
}
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return possible object is {@link CD }
*/
public CD getValue() {
return value;
}
/**
* Ruft den Wert der inverted-Eigenschaft ab.
*
* @return possible object is {@link Boolean }
*/
public boolean isInverted() {
if (inverted == null) {
return false;
} else {
return inverted;
}
}
/**
* Legt den Wert der inverted-Eigenschaft fest.
*
* @param value allowed object is {@link Boolean }
*/
public void setInverted(Boolean value) {
this.inverted = value;
}
/**
* Legt den Wert der name-Eigenschaft fest.
*
* @param value allowed object is {@link CV }
*/
public void setName(CV value) {
this.name = value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value allowed object is {@link CD }
*/
public void setValue(CD value) {
this.value = value;
}
}