org.bidib.schema.decodercv.DecoderCV Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.06.16 at 01:36:53 PM MESZ
//
package org.bidib.schema.decodercv;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Decoder" type="{http://www.bidib.org/schema/decodercv}DecoderType"/>
* <element name="CVList" type="{http://www.bidib.org/schema/decodercv}CVListType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"decoder",
"cvList"
})
@XmlRootElement(name = "DecoderCV")
public class DecoderCV {
@XmlElement(name = "Decoder", required = true)
protected DecoderType decoder;
@XmlElement(name = "CVList", required = true)
protected CVListType cvList;
/**
* Gets the value of the decoder property.
*
* @return
* possible object is
* {@link DecoderType }
*
*/
public DecoderType getDecoder() {
return decoder;
}
/**
* Sets the value of the decoder property.
*
* @param value
* allowed object is
* {@link DecoderType }
*
*/
public void setDecoder(DecoderType value) {
this.decoder = value;
}
/**
* Gets the value of the cvList property.
*
* @return
* possible object is
* {@link CVListType }
*
*/
public CVListType getCVList() {
return cvList;
}
/**
* Sets the value of the cvList property.
*
* @param value
* allowed object is
* {@link CVListType }
*
*/
public void setCVList(CVListType value) {
this.cvList = value;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
public DecoderCV withDecoder(DecoderType value) {
setDecoder(value);
return this;
}
public DecoderCV withCVList(CVListType value) {
setCVList(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy