| package org.maltparser.parser.guide;
|
|
|
|
|
| import org.maltparser.core.exception.MaltChainedException;
|
| import org.maltparser.core.feature.FeatureModel;
|
| import org.maltparser.core.syntaxgraph.DependencyStructure;
|
| |
| |
| |
|
|
| 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;
|
| }
|
|
|