legstar.test.jaxb.rdef01.Rdef01Record 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.rdef01;
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 Rdef01Record complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Rdef01Record">
* <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/rdef01}ComDetail1"/>
* <element name="comDetail2" type="{http://jaxb.test.legstar/rdef01}ComDetail2"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Rdef01Record", namespace = "http://jaxb.test.legstar/rdef01", propOrder = {
"comSelect",
"comDetail1",
"comDetail2"
})
public class Rdef01Record {
@XmlElement(namespace = "http://jaxb.test.legstar/rdef01")
protected int comSelect;
@XmlElement(namespace = "http://jaxb.test.legstar/rdef01")
protected ComDetail1 comDetail1;
@XmlElement(namespace = "http://jaxb.test.legstar/rdef01")
protected ComDetail2 comDetail2;
/**
* 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;
}
}