File size: 615 Bytes
6f3ebfa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | package org.maltparser.parser.guide;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.feature.FeatureModel;
import org.maltparser.core.syntaxgraph.DependencyStructure;
/**
*
* @author Johan Hall
**/
public interface Model {
public void finalizeSentence(DependencyStructure dependencyGraph) throws MaltChainedException;
public void noMoreInstances(FeatureModel featureModel) throws MaltChainedException;
public void terminate() throws MaltChainedException;
public ClassifierGuide getGuide();
public String getModelName() throws MaltChainedException;
}
|