legstar.test.jaxb.ardo01.Ardo01Record 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.ardo01;
import java.math.BigDecimal;
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 Ardo01Record complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Ardo01Record">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comNumber">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedInt">
* <totalDigits value="6"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comName">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="20"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comNbr">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
* <totalDigits value="4"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comArray" maxOccurs="5" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
* <totalDigits value="15"/>
* <fractionDigits value="2"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Ardo01Record", namespace = "http://jaxb.test.legstar/ardo01", propOrder = {
"comNumber",
"comName",
"comNbr",
"comArray"
})
public class Ardo01Record {
@XmlElement(namespace = "http://jaxb.test.legstar/ardo01")
protected long comNumber;
@XmlElement(namespace = "http://jaxb.test.legstar/ardo01", required = true)
protected String comName;
@XmlElement(namespace = "http://jaxb.test.legstar/ardo01")
protected int comNbr;
@XmlElement(namespace = "http://jaxb.test.legstar/ardo01")
protected List comArray;
/**
* Gets the value of the comNumber property.
*
*/
public long getComNumber() {
return comNumber;
}
/**
* Sets the value of the comNumber property.
*
*/
public void setComNumber(long value) {
this.comNumber = value;
}
/**
* Gets the value of the comName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComName() {
return comName;
}
/**
* Sets the value of the comName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComName(String value) {
this.comName = value;
}
/**
* Gets the value of the comNbr property.
*
*/
public int getComNbr() {
return comNbr;
}
/**
* Sets the value of the comNbr property.
*
*/
public void setComNbr(int value) {
this.comNbr = value;
}
/**
* Gets the value of the comArray 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 comArray property.
*
*
* For example, to add a new item, do as follows:
*
* getComArray().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link BigDecimal }
*
*
*/
public List getComArray() {
if (comArray == null) {
comArray = new ArrayList();
}
return this.comArray;
}
}