![JAR search and dependency download from the Maven repository](/logo.png)
legstar.test.jaxb.stru04.Stru04Record 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.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 Stru04Record complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Stru04Record">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="comItem1">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
* <totalDigits value="7"/>
* <fractionDigits value="2"/>
* <minInclusive value="0"/>
* </restriction>
* </simpleType>
* </element>
* <element name="comArray1" type="{http://jaxb.test.legstar/stru04}ComArray1" maxOccurs="3" minOccurs="3"/>
* <element name="comItem8">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
* <totalDigits value="7"/>
* <fractionDigits value="2"/>
* <minInclusive value="0"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Stru04Record", namespace = "http://jaxb.test.legstar/stru04", propOrder = {
"comItem1",
"comArray1",
"comItem8"
})
public class Stru04Record {
@XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true)
protected BigDecimal comItem1;
@XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true)
protected List comArray1;
@XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true)
protected BigDecimal comItem8;
/**
* Gets the value of the comItem1 property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getComItem1() {
return comItem1;
}
/**
* Sets the value of the comItem1 property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setComItem1(BigDecimal value) {
this.comItem1 = value;
}
/**
* Gets the value of the comArray1 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 comArray1 property.
*
*
* For example, to add a new item, do as follows:
*
* getComArray1().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ComArray1 }
*
*
*/
public List getComArray1() {
if (comArray1 == null) {
comArray1 = new ArrayList();
}
return this.comArray1;
}
/**
* Gets the value of the comItem8 property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getComItem8() {
return comItem8;
}
/**
* Sets the value of the comItem8 property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setComItem8(BigDecimal value) {
this.comItem8 = value;
}
}