Package org.maltparserx.core.io.dataformat

Examples of org.maltparserx.core.io.dataformat.DataFormatSpecification


   * @param dataFormatFileName the path to the data format specification file
   * @return a data format specification
   * @throws MaltChainedException
   */
  public DataFormatSpecification readDataFormatSpecification(String dataFormatFileName) throws MaltChainedException {
    DataFormatSpecification dataFormat = new DataFormatSpecification();
    dataFormat.parseDataFormatXMLfile(dataFormatFileName);
    return dataFormat;
  }
View Full Code Here

TOP

Related Classes of org.maltparserx.core.io.dataformat.DataFormatSpecification

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.