Statistics
| Revision:

root / org.gvsig.toolbox / trunk / org.gvsig.toolbox / org.gvsig.toolbox.algorithm / src / main / java / es / unex / sextante / vectorTools / splitLinesWithPoints / PtAndAttributes.java @ 59

History | View | Annotate | Download (476 Bytes)

1 59 nbrodin
package es.unex.sextante.vectorTools.splitLinesWithPoints;
2
3
public class PtAndAttributes {
4
5
   public Object[] attrs;
6
   public double   x;
7
   public double   y;
8
   public int      id;
9
10
11
   public PtAndAttributes(final double x,
12
                          final double y,
13
                          final int id,
14
                          final Object[] attrs) {
15
16
      this.x = x;
17
      this.y = y;
18
      this.id = id;
19
      this.attrs = attrs;
20
21
   }
22
23
}