Loading...
Searching...
No Matches
LocationPolygon.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
14public final class LocationPolygon {
15
16
17 /*package*/ final Polygon polygon;
18
19 /*package*/ final int locationId;
20
21 /*package*/ final int sublocationId;
22
27 Polygon polygon,
28 int locationId,
29 int sublocationId) {
30 this.polygon = polygon;
31 this.locationId = locationId;
32 this.sublocationId = sublocationId;
33 }
34
41 return polygon;
42 }
43
49 public int getLocationId() {
50 return locationId;
51 }
52
58 public int getSublocationId() {
59 return sublocationId;
60 }
61
62 @Override
63 public String toString() {
64 return "LocationPolygon{" +
65 "polygon=" + polygon +
66 "," + "locationId=" + locationId +
67 "," + "sublocationId=" + sublocationId +
68 "}";
69 }
70
71}