001 package org.maltparser.parser; 002 003 import org.maltparser.core.config.Configuration; 004 import org.maltparser.core.exception.MaltChainedException; 005 import org.maltparser.core.syntaxgraph.DependencyStructure; 006 import org.maltparser.parser.algorithm.ParsingAlgorithm; 007 import org.maltparser.parser.guide.Guide; 008 009 public interface DependencyParserConfig extends Configuration { 010 public void parse(DependencyStructure graph) throws MaltChainedException; 011 public void oracleParse(DependencyStructure goldGraph, DependencyStructure oracleGraph) throws MaltChainedException; 012 public Guide getGuide(); 013 public ParsingAlgorithm getParsingAlgorithm(); 014 }