diff src/de/mpiwg/anteater/places/PlacesExtraction.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/places/PlacesExtraction.java	Fri Sep 14 10:30:43 2012 +0200
@@ -0,0 +1,18 @@
+package de.mpiwg.anteater.places;
+
+import java.util.List;
+
+import de.mpiwg.anteater.core.TextExtraction;
+
+public class PlacesExtraction extends TextExtraction {
+
+	private List<PlaceInformation> placeInformation;
+	
+	public List<PlaceInformation> getPlaceInformation() {
+		return placeInformation;
+	}
+	
+	public void setPlaceInformation(List<PlaceInformation> placeInformation) {
+		this.placeInformation = placeInformation;
+	}
+}