view src/de/mpiwg/anteater/results/IResultFinder.java @ 3:ae96e4bc7fb2

save found species to analysis files
author jdamerow
date Mon, 22 Oct 2012 14:21:14 -0700
parents 036535fcd179
children
line wrap: on
line source

package de.mpiwg.anteater.results;

import java.util.List;

import de.mpiwg.anteater.text.TextInformation;

public interface IResultFinder<E extends IResult<?,?>> {

	public List<E> getResults(List<TextInformation> infos);
}