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