Loading...
Searching...
No Matches
LocationPolygon.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
3import java.util.ArrayList;
4
26public final class LocationPolygon {
27
28
29 /*package*/ final ArrayList<GlobalPoint> points;
30
31 /*package*/ final Integer sublocationId;
32
37 ArrayList<GlobalPoint> points,
38 Integer sublocationId) {
39 this.points = points;
40 this.sublocationId = sublocationId;
41 }
42
48 public ArrayList<GlobalPoint> getPoints() {
49 return points;
50 }
51
57 public Integer getSublocationId() {
58 return sublocationId;
59 }
60
61 @Override
62 public String toString() {
63 return "LocationPolygon{" +
64 "points=" + points +
65 "," + "sublocationId=" + sublocationId +
66 "}";
67 }
68
69}