
eu.fispace.api.ag.CropFieldAdvice Maven / Gradle / Ivy
//
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.7
// Visite http://java.sun.com/xml/jaxb
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
// Generado el: 2016.04.10 a las 11:14:17 AM CEST
//
package eu.fispace.api.ag;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
/**
* Clase Java para CropFieldAdvice complex type.
*
*
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
*
*
* <complexType name="CropFieldAdvice">
* <complexContent>
* <extension base="{http://www.fispace.eu/domain/ag}Advice">
* <sequence>
* <element name="cropfieldID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CropFieldAdvice", propOrder = {
"cropfieldID"
})
@XmlSeeAlso({
PhytophthoraAdvice.class
})
public class CropFieldAdvice
extends Advice
implements Serializable, ToString
{
@XmlElement(required = true)
protected String cropfieldID;
/**
* Obtiene el valor de la propiedad cropfieldID.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCropfieldID() {
return cropfieldID;
}
/**
* Define el valor de la propiedad cropfieldID.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCropfieldID(String value) {
this.cropfieldID = value;
}
public boolean isSetCropfieldID() {
return (this.cropfieldID!= null);
}
public String toString() {
final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) {
super.appendFields(locator, buffer, strategy);
{
String theCropfieldID;
theCropfieldID = this.getCropfieldID();
strategy.appendField(locator, this, "cropfieldID", buffer, theCropfieldID);
}
return buffer;
}
public CropFieldAdvice withCropfieldID(String value) {
setCropfieldID(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy