Alejandro Acuña
2024-08-12 1876e65234c20209001178705cfa50d8f9ded67a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
 
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>
 * &lt;complexType name="Point">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/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;
    }
 
}