// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // 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: 2013.11.22 at 03:43:03 下午 CST // package org.solmix.api.jaxb; 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; /** * <p>Java class for Tsolmix complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Tsolmix"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="DataSource" type="{http://www.solmix.org/xmlns/datasource/v1.0.1}TdataSource"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Tsolmix", propOrder = { "dataSource" }) @XmlRootElement(name="solmix") public class Tsolmix { @XmlElement(name = "DataSource", required = true) protected TdataSource dataSource; /** * Gets the value of the dataSource property. * * @return * possible object is * {@link TdataSource } * */ public TdataSource getDataSource() { return dataSource; } /** * Sets the value of the dataSource property. * * @param value * allowed object is * {@link TdataSource } * */ public void setDataSource(TdataSource value) { this.dataSource = value; } }