package net.conselldemallorca.helium.wsintegraciones.portafirmasws.cws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para PdfPosition complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="PdfPosition"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="format" type="{http://www.indra.es/portafirmasws/cws}Format" minOccurs="0"/> * <element name="sheet" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="x_0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="y_0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="x_1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="y_1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PdfPosition", propOrder = { "format", "sheet", "x0", "y0", "x1", "y1" }) public class PdfPosition { protected Format format; protected String sheet; @XmlElement(name = "x_0") protected String x0; @XmlElement(name = "y_0") protected String y0; @XmlElement(name = "x_1") protected String x1; @XmlElement(name = "y_1") protected String y1; /** * Obtiene el valor de la propiedad format. * * @return * possible object is * {@link Format } * */ public Format getFormat() { return format; } /** * Define el valor de la propiedad format. * * @param value * allowed object is * {@link Format } * */ public void setFormat(Format value) { this.format = value; } /** * Obtiene el valor de la propiedad sheet. * * @return * possible object is * {@link String } * */ public String getSheet() { return sheet; } /** * Define el valor de la propiedad sheet. * * @param value * allowed object is * {@link String } * */ public void setSheet(String value) { this.sheet = value; } /** * Obtiene el valor de la propiedad x0. * * @return * possible object is * {@link String } * */ public String getX0() { return x0; } /** * Define el valor de la propiedad x0. * * @param value * allowed object is * {@link String } * */ public void setX0(String value) { this.x0 = value; } /** * Obtiene el valor de la propiedad y0. * * @return * possible object is * {@link String } * */ public String getY0() { return y0; } /** * Define el valor de la propiedad y0. * * @param value * allowed object is * {@link String } * */ public void setY0(String value) { this.y0 = value; } /** * Obtiene el valor de la propiedad x1. * * @return * possible object is * {@link String } * */ public String getX1() { return x1; } /** * Define el valor de la propiedad x1. * * @param value * allowed object is * {@link String } * */ public void setX1(String value) { this.x1 = value; } /** * Obtiene el valor de la propiedad y1. * * @return * possible object is * {@link String } * */ public String getY1() { return y1; } /** * Define el valor de la propiedad y1. * * @param value * allowed object is * {@link String } * */ public void setY1(String value) { this.y1 = value; } }