File size: 488 Bytes
6f3ebfa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | package org.maltparser.parser.guide;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.parser.history.action.GuideUserAction;
/**
*
* @author Johan Hall
* @since 1.1
**/
public interface Guidable {
public void setInstance(GuideUserAction action) throws MaltChainedException;
public void predict(GuideUserAction action) throws MaltChainedException;
public boolean predictFromKBestList(GuideUserAction action) throws MaltChainedException;
}
|