package trax.skp5; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *

Clase Java para RectCfg complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="RectCfg">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="w" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="h" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RectCfg", propOrder = { "x", "y", "w", "h" }) public class RectCfg { protected int x; protected int y; protected int w; protected int h; /** * Obtiene el valor de la propiedad x. * */ public int getX() { return x; } /** * Define el valor de la propiedad x. * */ public void setX(int value) { this.x = value; } /** * Obtiene el valor de la propiedad y. * */ public int getY() { return y; } /** * Define el valor de la propiedad y. * */ public void setY(int value) { this.y = value; } /** * Obtiene el valor de la propiedad w. * */ public int getW() { return w; } /** * Define el valor de la propiedad w. * */ public void setW(int value) { this.w = value; } /** * Obtiene el valor de la propiedad h. * */ public int getH() { return h; } /** * Define el valor de la propiedad h. * */ public void setH(int value) { this.h = value; } }