TreePoint.java 419 Bytes
Newer Older
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
package de.hft.stuttgart.citygml.green.osm;

import org.locationtech.jts.geom.Point;

public class TreePoint {

	private Point point;

	public TreePoint() {
	}

	public TreePoint(Point point) {
		this.point = point;
	}

	public void setPoint(Point point) {
		this.point = point;
	}

	public Point getPoint() {
		return point;
	}

	@Override
	public String toString() {
		return "TreePoint [point=" + point + "]";
	}

}