legstar.test.jaxb.stru04.ComGroup1 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.stru04;
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 ComGroup1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ComGroup1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comItem3">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}short">
* <totalDigits value="4"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comArray2" type="{http://jaxb.test.legstar/stru04}ComArray2" maxOccurs="2" minOccurs="2"/>
* <element name="comItem6">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}short">
* <totalDigits value="4"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ComGroup1", namespace = "http://jaxb.test.legstar/stru04", propOrder = {
"comItem3",
"comArray2",
"comItem6"
})
public class ComGroup1 {
@XmlElement(namespace = "http://jaxb.test.legstar/stru04")
protected short comItem3;
@XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true)
protected List comArray2;
@XmlElement(namespace = "http://jaxb.test.legstar/stru04")
protected short comItem6;
/**
* Gets the value of the comItem3 property.
*
*/
public short getComItem3() {
return comItem3;
}
/**
* Sets the value of the comItem3 property.
*
*/
public void setComItem3(short value) {
this.comItem3 = value;
}
/**
* Gets the value of the comArray2 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 comArray2 property.
*
*
* For example, to add a new item, do as follows:
*
* getComArray2().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ComArray2 }
*
*
*/
public List getComArray2() {
if (comArray2 == null) {
comArray2 = new ArrayList();
}
return this.comArray2;
}
/**
* Gets the value of the comItem6 property.
*
*/
public short getComItem6() {
return comItem6;
}
/**
* Sets the value of the comItem6 property.
*
*/
public void setComItem6(short value) {
this.comItem6 = value;
}
}