diff src/de/mpiwg/anteater/results/LocationResult.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/results/LocationResult.java	Fri Sep 14 10:30:43 2012 +0200
@@ -0,0 +1,49 @@
+package de.mpiwg.anteater.results;
+
+import de.mpiwg.anteater.places.Place;
+import de.mpiwg.anteater.places.PlaceInformation;
+import de.mpiwg.anteater.places.PlacesExtraction;
+import de.mpiwg.anteater.text.TextInformation;
+
+public class LocationResult implements
+		IResult<PlacesExtraction, PlaceInformation> {
+	
+	private PlacesExtraction result;
+	private PlaceInformation finding;
+	private double prediction;
+	private TextInformation textInfo;
+	private Place place;
+	
+	public PlacesExtraction getResult() {
+		return result;
+	}
+	public void setResult(PlacesExtraction result) {
+		this.result = result;
+	}
+	public PlaceInformation getFinding() {
+		return finding;
+	}
+	public void setFinding(PlaceInformation finding) {
+		this.finding = finding;
+	}
+	public double getPrediction() {
+		return prediction;
+	}
+	public void setPrediction(double prediction) {
+		this.prediction = prediction;
+	}
+	public TextInformation getTextInfo() {
+		return textInfo;
+	}
+	public void setTextInfo(TextInformation textInfo) {
+		this.textInfo = textInfo;
+	}
+	public Place getPlace() {
+		return place;
+	}
+	public void setPlace(Place place) {
+		this.place = place;
+	}
+	
+	
+}