package de.fh_giessen.epr.container.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Behälter für die Bestandteile eines Hinweisteils eines Registereintrags. * *

Java class for THinweisTeil complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="THinweisTeil">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="HinweisTeilId" type="{http://www.fh-giessen.de/epr/Container/v1}THinweisTeilId"/>
 *         <element name="HinweisTeilDaten" type="{http://www.fh-giessen.de/epr/Container/v1}TXMLContainer"/>
 *         <element name="HinweisTeilPDFA" type="{http://www.fh-giessen.de/epr/Container/v1}TPDFContainer"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "THinweisTeil", propOrder = { "hinweisTeilId", "hinweisTeilDaten", "hinweisTeilPDFA" }) public class THinweisTeil { @XmlElement(name = "HinweisTeilId", required = true) protected THinweisTeilId hinweisTeilId; @XmlElement(name = "HinweisTeilDaten", required = true) protected TXMLContainer hinweisTeilDaten; @XmlElement(name = "HinweisTeilPDFA", required = true) protected TPDFContainer hinweisTeilPDFA; /** * Gets the value of the hinweisTeilId property. * * @return * possible object is * {@link THinweisTeilId } * */ public THinweisTeilId getHinweisTeilId() { return hinweisTeilId; } /** * Sets the value of the hinweisTeilId property. * * @param value * allowed object is * {@link THinweisTeilId } * */ public void setHinweisTeilId(THinweisTeilId value) { this.hinweisTeilId = value; } /** * Gets the value of the hinweisTeilDaten property. * * @return * possible object is * {@link TXMLContainer } * */ public TXMLContainer getHinweisTeilDaten() { return hinweisTeilDaten; } /** * Sets the value of the hinweisTeilDaten property. * * @param value * allowed object is * {@link TXMLContainer } * */ public void setHinweisTeilDaten(TXMLContainer value) { this.hinweisTeilDaten = value; } /** * Gets the value of the hinweisTeilPDFA property. * * @return * possible object is * {@link TPDFContainer } * */ public TPDFContainer getHinweisTeilPDFA() { return hinweisTeilPDFA; } /** * Sets the value of the hinweisTeilPDFA property. * * @param value * allowed object is * {@link TPDFContainer } * */ public void setHinweisTeilPDFA(TPDFContainer value) { this.hinweisTeilPDFA = value; } }