Package org.maltparserx.core.syntaxgraph.headrules

Examples of org.maltparserx.core.syntaxgraph.headrules.HeadRules


    this.headRules = headRules;
  }
 
  public void setHeadRules(String headRulesURL) throws MaltChainedException {
    if (headRulesURL != null && headRulesURL.length() > 0 && !headRulesURL.equals("*")) {
      headRules = new HeadRules(SystemLogger.logger(), phraseStructuretDataFormatInstance);
      headRules.parseHeadRules(headRulesURL);
    }
  }
View Full Code Here

TOP

Related Classes of org.maltparserx.core.syntaxgraph.headrules.HeadRules

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.