view src/de/mpiwg/anteater/places/PlaceInformation.java @ 0:036535fcd179

anteater
author jdamerow
date Fri, 14 Sep 2012 10:30:43 +0200
parents
children
line wrap: on
line source

package de.mpiwg.anteater.places;

import java.util.List;

import de.mpiwg.anteater.core.Finding;

public class PlaceInformation extends Finding {

	
	private String text;
	private List<Place> places;
	
	public void setText(String text) {
		this.text = text;
	}
	public String getText() {
		return text;
	}
	
	public void setPlaces(List<Place> places) {
		this.places = places;
	}
	public List<Place> getPlaces() {
		return places;
	}
	
	
}