Loading...
Searching...
No Matches
LocationPoint.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
19public final class LocationPoint {
20
21
22 /*package*/ final Point point;
23
24 /*package*/ final int locationId;
25
26 /*package*/ final int sublocationId;
27
32 Point point,
33 int locationId,
34 int sublocationId) {
35 this.point = point;
36 this.locationId = locationId;
37 this.sublocationId = sublocationId;
38 }
39
43 public Point getPoint() {
44 return point;
45 }
46
50 public int getLocationId() {
51 return locationId;
52 }
53
57 public int getSublocationId() {
58 return sublocationId;
59 }
60
61 @Override
62 public String toString() {
63 return "LocationPoint{" +
64 "point=" + point +
65 "," + "locationId=" + locationId +
66 "," + "sublocationId=" + sublocationId +
67 "}";
68 }
69
70}