Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extGeoreferencing / src / org / gvsig / georeferencing / utils / PointT.java @ 5217

History | View | Annotate | Download (498 Bytes)

1
package org.gvsig.georeferencing.utils;
2

    
3
public class PointT{
4
        private double        x;
5
        private double        y;
6
        private int                i;
7
        private String         name;
8
        public int getI() {
9
                return i;
10
        }
11
        public void setI(int i) {
12
                this.i = i;
13
        }
14
        public String getName() {
15
                return name;
16
        }
17
        public void setName(String name) {
18
                this.name = name;
19
        }
20
        public double getX() {
21
                return x;
22
        }
23
        public void setX(double x) {
24
                this.x = x;
25
        }
26
        public double getY() {
27
                return y;
28
        }
29
        public void setY(double y) {
30
                this.y = y;
31
        }
32
}