view src/de/mpiwg/anteater/persons/PersonsExtraction.java @ 10:70510ec97f4a default tip

annotate texts with results and build events with linnaeus
author jdamerow
date Mon, 19 Nov 2012 16:36:54 -0700
parents 036535fcd179
children
line wrap: on
line source

package de.mpiwg.anteater.persons;

import java.util.List;

import de.mpiwg.anteater.core.TextExtraction;

public class PersonsExtraction extends TextExtraction {

	private List<APerson> person;

	public void setPerson(List<APerson> person) {
		this.person = person;
	}

	public List<APerson> getPersons() {
		return person;
	}
	
}