Loading...
Searching...
No Matches
LocationPolygon.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
24public final class LocationPolygon {
25
26
27 /*package*/ final Polygon polygon;
28
29 /*package*/ final int locationId;
30
31 /*package*/ final int sublocationId;
32
37 Polygon polygon,
38 int locationId,
39 int sublocationId) {
40 this.polygon = polygon;
41 this.locationId = locationId;
42 this.sublocationId = sublocationId;
43 }
44
51 return polygon;
52 }
53
59 public int getLocationId() {
60 return locationId;
61 }
62
68 public int getSublocationId() {
69 return sublocationId;
70 }
71
72 @Override
73 public String toString() {
74 return "LocationPolygon{" +
75 "polygon=" + polygon +
76 "," + "locationId=" + locationId +
77 "," + "sublocationId=" + sublocationId +
78 "}";
79 }
80
81}