001 package org.maltparser.parser.guide; 002 003 import org.maltparser.core.exception.MaltChainedException; 004 import org.maltparser.core.syntaxgraph.DependencyStructure; 005 import org.maltparser.parser.ParserConfiguration; 006 import org.maltparser.parser.history.action.GuideUserAction; 007 008 public interface OracleGuide extends Guide { 009 public GuideUserAction predict(DependencyStructure gold, ParserConfiguration config) throws MaltChainedException; 010 }