comparison src/de/mpiwg/anteater/events/Location.java @ 0:036535fcd179

anteater
author jdamerow
date Fri, 14 Sep 2012 10:30:43 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:036535fcd179
1 package de.mpiwg.anteater.events;
2
3 import de.mpiwg.anteater.places.PlaceInformation;
4 import de.mpiwg.anteater.results.LocationResult;
5
6 public class Location {
7
8 private LocationResult locationResult;
9 private PlaceInformation location;
10
11 public LocationResult getLocationResult() {
12 return locationResult;
13 }
14 public void setLocationResult(LocationResult locationResult) {
15 this.locationResult = locationResult;
16 }
17 public PlaceInformation getLocation() {
18 return location;
19 }
20 public void setLocation(PlaceInformation location) {
21 this.location = location;
22 }
23
24
25 }