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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DokumentInfo" type="{http://www.fh-giessen.de/epr/Container/v1}TDokumentInfo"/>
 *         <element name="HinweisTeil" type="{http://www.fh-giessen.de/epr/Container/v1}THinweisTeil"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dokumentInfo", "hinweisTeil" }) @XmlRootElement(name = "HinweisTeilDokument") public class HinweisTeilDokument { @XmlElement(name = "DokumentInfo", required = true) protected TDokumentInfo dokumentInfo; @XmlElement(name = "HinweisTeil", required = true) protected THinweisTeil hinweisTeil; /** * Gets the value of the dokumentInfo property. * * @return * possible object is * {@link TDokumentInfo } * */ public TDokumentInfo getDokumentInfo() { return dokumentInfo; } /** * Sets the value of the dokumentInfo property. * * @param value * allowed object is * {@link TDokumentInfo } * */ public void setDokumentInfo(TDokumentInfo value) { this.dokumentInfo = value; } /** * Gets the value of the hinweisTeil property. * * @return * possible object is * {@link THinweisTeil } * */ public THinweisTeil getHinweisTeil() { return hinweisTeil; } /** * Sets the value of the hinweisTeil property. * * @param value * allowed object is * {@link THinweisTeil } * */ public void setHinweisTeil(THinweisTeil value) { this.hinweisTeil = value; } }