|
package trax.skp5;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlType;
|
|
|
/**
|
* Size type element.
|
*
|
* <p>Clase Java para Size complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="Size">
|
* <complexContent>
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <sequence>
|
* <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
* <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "Size", propOrder = {
|
"width",
|
"height"
|
})
|
public class Size {
|
|
protected int width;
|
protected int height;
|
|
/**
|
* Obtiene el valor de la propiedad width.
|
*
|
*/
|
public int getWidth() {
|
return width;
|
}
|
|
/**
|
* Define el valor de la propiedad width.
|
*
|
*/
|
public void setWidth(int value) {
|
this.width = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad height.
|
*
|
*/
|
public int getHeight() {
|
return height;
|
}
|
|
/**
|
* Define el valor de la propiedad height.
|
*
|
*/
|
public void setHeight(int value) {
|
this.height = value;
|
}
|
|
}
|