//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2016.07.11 um 09:24:40 AM CEST
//
package ch.elexis.icpc.fire.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java-Klasse für tDiagnose complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="tDiagnose">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="icpc" use="required" type="{}tString3" />
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tDiagnose")
public class TDiagnose {
@XmlAttribute(name = "icpc", required = true)
protected String icpc;
@XmlAttribute(name = "description")
protected String description;
/**
* Ruft den Wert der icpc-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIcpc() {
return icpc;
}
/**
* Legt den Wert der icpc-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIcpc(String value) {
this.icpc = value;
}
/**
* Ruft den Wert der description-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Legt den Wert der description-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
}