All Downloads are FREE. Search and download functionalities are using the official Maven repository.

legstar.test.jaxb.stru04.ComArray2 Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
//
// 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 ComArray2 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ComArray2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="comItem4">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="1"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="comArray3" maxOccurs="5" minOccurs="5">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="1"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="comItem5">
 *           <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 = "ComArray2", namespace = "http://jaxb.test.legstar/stru04", propOrder = { "comItem4", "comArray3", "comItem5" }) public class ComArray2 { @XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true) protected String comItem4; @XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true) protected List comArray3; @XmlElement(namespace = "http://jaxb.test.legstar/stru04", required = true) protected BigDecimal comItem5; /** * Gets the value of the comItem4 property. * * @return * possible object is * {@link String } * */ public String getComItem4() { return comItem4; } /** * Sets the value of the comItem4 property. * * @param value * allowed object is * {@link String } * */ public void setComItem4(String value) { this.comItem4 = value; } /** * Gets the value of the comArray3 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 comArray3 property. * *

* For example, to add a new item, do as follows: *

     *    getComArray3().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getComArray3() { if (comArray3 == null) { comArray3 = new ArrayList(); } return this.comArray3; } /** * Gets the value of the comItem5 property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getComItem5() { return comItem5; } /** * Sets the value of the comItem5 property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setComItem5(BigDecimal value) { this.comItem5 = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy