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

legstar.test.jaxb.rdef03.Rdef03Record 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.rdef03;

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 Rdef03Record complex type. * *

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

 * <complexType name="Rdef03Record">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="comSelect">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
 *               <totalDigits value="4"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <choice>
 *           <element name="comDetail1" type="{http://jaxb.test.legstar/rdef03}ComDetail1"/>
 *           <element name="comDetail2" type="{http://jaxb.test.legstar/rdef03}ComDetail2"/>
 *           <element name="comDetail3" type="{http://jaxb.test.legstar/rdef03}ComDetail3"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rdef03Record", namespace = "http://jaxb.test.legstar/rdef03", propOrder = { "comSelect", "comDetail1", "comDetail2", "comDetail3" }) public class Rdef03Record { @XmlElement(namespace = "http://jaxb.test.legstar/rdef03") protected int comSelect; @XmlElement(namespace = "http://jaxb.test.legstar/rdef03") protected ComDetail1 comDetail1; @XmlElement(namespace = "http://jaxb.test.legstar/rdef03") protected ComDetail2 comDetail2; @XmlElement(namespace = "http://jaxb.test.legstar/rdef03") protected ComDetail3 comDetail3; /** * Gets the value of the comSelect property. * */ public int getComSelect() { return comSelect; } /** * Sets the value of the comSelect property. * */ public void setComSelect(int value) { this.comSelect = value; } /** * Gets the value of the comDetail1 property. * * @return * possible object is * {@link ComDetail1 } * */ public ComDetail1 getComDetail1() { return comDetail1; } /** * Sets the value of the comDetail1 property. * * @param value * allowed object is * {@link ComDetail1 } * */ public void setComDetail1(ComDetail1 value) { this.comDetail1 = value; } /** * Gets the value of the comDetail2 property. * * @return * possible object is * {@link ComDetail2 } * */ public ComDetail2 getComDetail2() { return comDetail2; } /** * Sets the value of the comDetail2 property. * * @param value * allowed object is * {@link ComDetail2 } * */ public void setComDetail2(ComDetail2 value) { this.comDetail2 = value; } /** * Gets the value of the comDetail3 property. * * @return * possible object is * {@link ComDetail3 } * */ public ComDetail3 getComDetail3() { return comDetail3; } /** * Sets the value of the comDetail3 property. * * @param value * allowed object is * {@link ComDetail3 } * */ public void setComDetail3(ComDetail3 value) { this.comDetail3 = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy