All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.com.test4.OutputChildClass3 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.test4;

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 OutputChildClass3 complex type. * *

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

 * <complexType name="OutputChildClass3">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="nameDetails" type="{http://test4.com.au}TestNameDetailsType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OutputChildClass3", propOrder = { "nameDetails" }) @XmlRootElement(name = "OutputChildClass3") public class OutputChildClass3 implements Serializable { @XmlElement(required = true) protected TestNameDetailsType nameDetails; /** * Gets the value of the nameDetails property. * * @return * possible object is * {@link TestNameDetailsType } * */ public TestNameDetailsType getNameDetails() { return nameDetails; } /** * Sets the value of the nameDetails property. * * @param value * allowed object is * {@link TestNameDetailsType } * */ public void setNameDetails(TestNameDetailsType value) { this.nameDetails = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy