
au.com.test3.OutputClass Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.03.26 at 06:47:47 PM EST
//
package au.com.test3;
import java.io.Serializable;
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 OutputClass complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OutputClass">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="outputChildDetails" type="{http://test3.com.au}OutputChildClass1"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OutputClass", propOrder = {
"outputChildDetails"
})
@XmlRootElement(name = "OutputClass")
public class OutputClass
implements Serializable
{
@XmlElement(required = true)
protected OutputChildClass1 outputChildDetails;
/**
* Gets the value of the outputChildDetails property.
*
* @return
* possible object is
* {@link OutputChildClass1 }
*
*/
public OutputChildClass1 getOutputChildDetails() {
return outputChildDetails;
}
/**
* Sets the value of the outputChildDetails property.
*
* @param value
* allowed object is
* {@link OutputChildClass1 }
*
*/
public void setOutputChildDetails(OutputChildClass1 value) {
this.outputChildDetails = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy