blob: 03256c80308e65995e2edf696a188810e9338424 [file] [log] [blame]
package opennlp.tools.parse_thicket;
import java.util.List;
public interface IGeneralizer<T> {
/* All objects such as words, ParseTreeNodes, Phrases, Communicative actions etc. are subject to
* generalization, so should implement this interface
*
* In this project Everything is subject to generalization, and returns a list of generic objects
*/
public List<T> generalize(Object o1, Object o2);
}