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

legstar.test.jaxb.rdef02.Rdef02Key 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.rdef02;

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

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

 * <complexType name="Rdef02Key">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <element name="rdef02Item1">
 *             <simpleType>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}long">
 *                 <totalDigits value="10"/>
 *               </restriction>
 *             </simpleType>
 *           </element>
 *           <element name="rdef02Item2">
 *             <simpleType>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *                 <maxLength value="6"/>
 *               </restriction>
 *             </simpleType>
 *           </element>
 *         </choice>
 *         <element name="comSelect">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}unsignedShort">
 *               <totalDigits value="4"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rdef02Key", namespace = "http://jaxb.test.legstar/rdef02", propOrder = { "rdef02Item1", "rdef02Item2", "comSelect" }) public class Rdef02Key { @XmlElement(namespace = "http://jaxb.test.legstar/rdef02") protected Long rdef02Item1; @XmlElement(namespace = "http://jaxb.test.legstar/rdef02") protected String rdef02Item2; @XmlElement(namespace = "http://jaxb.test.legstar/rdef02") protected int comSelect; /** * Gets the value of the rdef02Item1 property. * * @return * possible object is * {@link Long } * */ public Long getRdef02Item1() { return rdef02Item1; } /** * Sets the value of the rdef02Item1 property. * * @param value * allowed object is * {@link Long } * */ public void setRdef02Item1(Long value) { this.rdef02Item1 = value; } /** * Gets the value of the rdef02Item2 property. * * @return * possible object is * {@link String } * */ public String getRdef02Item2() { return rdef02Item2; } /** * Sets the value of the rdef02Item2 property. * * @param value * allowed object is * {@link String } * */ public void setRdef02Item2(String value) { this.rdef02Item2 = value; } /** * 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy