legstar.test.jaxb.stru04.ComArray1 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 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 ComArray1 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ComArray1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comItem2">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}short">
* <totalDigits value="4"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comGroup1" type="{http://jaxb.test.legstar/stru04}ComGroup1"/>
* <element name="comItem7">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}int">
* <totalDigits value="8"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ComArray1", namespace = "http://jaxb.test.legstar/stru04", propOrder = {
"comItem2",
"comGroup1",
"comItem7"
})
public class ComArray1 {
@XmlElement(namespace = "http://jaxb.test.legstar/stru04")
protected short comItem2;
@XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true)
protected ComGroup1 comGroup1;
@XmlElement(namespace = "http://jaxb.test.legstar/stru04")
protected int comItem7;
/**
* Gets the value of the comItem2 property.
*
*/
public short getComItem2() {
return comItem2;
}
/**
* Sets the value of the comItem2 property.
*
*/
public void setComItem2(short value) {
this.comItem2 = value;
}
/**
* Gets the value of the comGroup1 property.
*
* @return
* possible object is
* {@link ComGroup1 }
*
*/
public ComGroup1 getComGroup1() {
return comGroup1;
}
/**
* Sets the value of the comGroup1 property.
*
* @param value
* allowed object is
* {@link ComGroup1 }
*
*/
public void setComGroup1(ComGroup1 value) {
this.comGroup1 = value;
}
/**
* Gets the value of the comItem7 property.
*
*/
public int getComItem7() {
return comItem7;
}
/**
* Sets the value of the comItem7 property.
*
*/
public void setComItem7(int value) {
this.comItem7 = value;
}
}