All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.maltparserx.parser.guide.Model Maven / Gradle / Ivy

package org.maltparserx.parser.guide;


import org.maltparserx.core.exception.MaltChainedException;
import org.maltparserx.core.syntaxgraph.DependencyStructure;
/**
*
* @author Johan Hall
* @since 1.0
**/
public interface Model {
	public void finalizeSentence(DependencyStructure dependencyGraph) throws MaltChainedException;
	public void noMoreInstances() throws MaltChainedException;
	public void terminate() throws MaltChainedException;
	
	public ClassifierGuide getGuide();
	public String getModelName() throws MaltChainedException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy