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.guide.ClassifierGuide;
007    /**
008     * @author Johan Hall
009     *
010     */
011    public interface DependencyParserConfig extends Configuration {
012            public void parse(DependencyStructure graph) throws MaltChainedException;
013            public void oracleParse(DependencyStructure goldGraph, DependencyStructure oracleGraph) throws MaltChainedException;
014            public ClassifierGuide getGuide();
015            public Algorithm getAlgorithm();
016    }