|
package trax.skp5;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlElement;
|
import javax.xml.bind.annotation.XmlType;
|
|
|
/**
|
* Rectangle type element.
|
*
|
* <p>Clase Java para Rectangle complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="Rectangle">
|
* <complexContent>
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <sequence>
|
* <element name="pos" type="{http://traxelektronik.pl/trax/ws/protocol}Point"/>
|
* <element name="size" type="{http://traxelektronik.pl/trax/ws/protocol}Size"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "Rectangle", propOrder = {
|
"pos",
|
"size"
|
})
|
public class Rectangle {
|
|
@XmlElement(required = true)
|
protected Point pos;
|
@XmlElement(required = true)
|
protected Size size;
|
|
/**
|
* Obtiene el valor de la propiedad pos.
|
*
|
* @return
|
* possible object is
|
* {@link Point }
|
*
|
*/
|
public Point getPos() {
|
return pos;
|
}
|
|
/**
|
* Define el valor de la propiedad pos.
|
*
|
* @param value
|
* allowed object is
|
* {@link Point }
|
*
|
*/
|
public void setPos(Point value) {
|
this.pos = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad size.
|
*
|
* @return
|
* possible object is
|
* {@link Size }
|
*
|
*/
|
public Size getSize() {
|
return size;
|
}
|
|
/**
|
* Define el valor de la propiedad size.
|
*
|
* @param value
|
* allowed object is
|
* {@link Size }
|
*
|
*/
|
public void setSize(Size value) {
|
this.size = value;
|
}
|
|
}
|