![JAR search and dependency download from the Maven repository](/logo.png)
legstar.test.jaxb.stru05.Stru05Record Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.01.05 at 05:42:50 PM CET
//
package legstar.test.jaxb.stru05;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Stru05Record complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Stru05Record">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comItemA" type="{http://jaxb.test.legstar/stru05}ComItemA"/>
* <element name="comItemC" type="{http://jaxb.test.legstar/stru05}ComItemC" maxOccurs="3" minOccurs="3"/>
* <element name="comItemD" type="{http://jaxb.test.legstar/stru05}ComItemD"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Stru05Record", namespace = "http://jaxb.test.legstar/stru05", propOrder = {
"comItemA",
"comItemC",
"comItemD"
})
public class Stru05Record {
@XmlElement(namespace = "http://jaxb.test.legstar/stru05", required = true)
protected ComItemA comItemA;
@XmlElement(namespace = "http://jaxb.test.legstar/stru05", required = true)
protected List comItemC;
@XmlElement(namespace = "http://jaxb.test.legstar/stru05", required = true)
protected ComItemD comItemD;
/**
* Gets the value of the comItemA property.
*
* @return
* possible object is
* {@link ComItemA }
*
*/
public ComItemA getComItemA() {
return comItemA;
}
/**
* Sets the value of the comItemA property.
*
* @param value
* allowed object is
* {@link ComItemA }
*
*/
public void setComItemA(ComItemA value) {
this.comItemA = value;
}
/**
* Gets the value of the comItemC property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the comItemC property.
*
*
* For example, to add a new item, do as follows:
*
* getComItemC().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ComItemC }
*
*
*/
public List getComItemC() {
if (comItemC == null) {
comItemC = new ArrayList();
}
return this.comItemC;
}
/**
* Gets the value of the comItemD property.
*
* @return
* possible object is
* {@link ComItemD }
*
*/
public ComItemD getComItemD() {
return comItemD;
}
/**
* Sets the value of the comItemD property.
*
* @param value
* allowed object is
* {@link ComItemD }
*
*/
public void setComItemD(ComItemD value) {
this.comItemD = value;
}
}