|
package trax.skp5;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
import javax.xml.bind.annotation.XmlType;
|
|
|
/**
|
* Point type element.
|
*
|
* <p>Clase Java para Point complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType name="Point">
|
* <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"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "Point", propOrder = {
|
"x",
|
"y"
|
})
|
public class Point {
|
|
protected int x;
|
protected int y;
|
|
/**
|
* 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;
|
}
|
|
}
|