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

anteater
author jdamerow
date Fri, 14 Sep 2012 10:30:43 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/de/mpiwg/anteater/events/Location.java	Fri Sep 14 10:30:43 2012 +0200
@@ -0,0 +1,25 @@
+package de.mpiwg.anteater.events;
+
+import de.mpiwg.anteater.places.PlaceInformation;
+import de.mpiwg.anteater.results.LocationResult;
+
+public class Location {
+
+	private LocationResult locationResult;
+	private PlaceInformation location;
+	
+	public LocationResult getLocationResult() {
+		return locationResult;
+	}
+	public void setLocationResult(LocationResult locationResult) {
+		this.locationResult = locationResult;
+	}
+	public PlaceInformation getLocation() {
+		return location;
+	}
+	public void setLocation(PlaceInformation location) {
+		this.location = location;
+	}
+	
+	
+}