// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.03.18 at 03:48:09 PM CET // package ch.fd.invoice440.request; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for xtraHospitalType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="xtraHospitalType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="ambulatory" type="{http://www.forum-datenaustausch.ch/invoice}xtraAmbulatoryType"/> * <element name="stationary" type="{http://www.forum-datenaustausch.ch/invoice}xtraStationaryType"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "xtraHospitalType", propOrder = { "ambulatory", "stationary" }) public class XtraHospitalType { protected XtraAmbulatoryType ambulatory; protected XtraStationaryType stationary; /** * Gets the value of the ambulatory property. * * @return * possible object is * {@link XtraAmbulatoryType } * */ public XtraAmbulatoryType getAmbulatory() { return ambulatory; } /** * Sets the value of the ambulatory property. * * @param value * allowed object is * {@link XtraAmbulatoryType } * */ public void setAmbulatory(XtraAmbulatoryType value) { this.ambulatory = value; } /** * Gets the value of the stationary property. * * @return * possible object is * {@link XtraStationaryType } * */ public XtraStationaryType getStationary() { return stationary; } /** * Sets the value of the stationary property. * * @param value * allowed object is * {@link XtraStationaryType } * */ public void setStationary(XtraStationaryType value) { this.stationary = value; } }