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

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

import java.math.BigDecimal;
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 Rdef02Record complex type. * *

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

 * <complexType name="Rdef02Record">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="rdef02Key" type="{http://jaxb.test.legstar/rdef02}Rdef02Key"/>
 *         <choice>
 *           <element name="comDetail1" type="{http://jaxb.test.legstar/rdef02}ComDetail1"/>
 *           <element name="comDetail2" type="{http://jaxb.test.legstar/rdef02}ComDetail2"/>
 *         </choice>
 *         <element name="comItem3">
 *           <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 = "Rdef02Record", namespace = "http://jaxb.test.legstar/rdef02", propOrder = { "rdef02Key", "comDetail1", "comDetail2", "comItem3" }) public class Rdef02Record { @XmlElement(namespace = "http://jaxb.test.legstar/rdef02", required = true) protected Rdef02Key rdef02Key; @XmlElement(namespace = "http://jaxb.test.legstar/rdef02") protected ComDetail1 comDetail1; @XmlElement(namespace = "http://jaxb.test.legstar/rdef02") protected ComDetail2 comDetail2; @XmlElement(namespace = "http://jaxb.test.legstar/rdef02", required = true) protected BigDecimal comItem3; /** * Gets the value of the rdef02Key property. * * @return * possible object is * {@link Rdef02Key } * */ public Rdef02Key getRdef02Key() { return rdef02Key; } /** * Sets the value of the rdef02Key property. * * @param value * allowed object is * {@link Rdef02Key } * */ public void setRdef02Key(Rdef02Key value) { this.rdef02Key = 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 comItem3 property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getComItem3() { return comItem3; } /** * Sets the value of the comItem3 property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setComItem3(BigDecimal value) { this.comItem3 = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy