Malt.java :  » Natural-Language-Processing » MaltParser » org » maltparser » Java Open Source

Java Open Source » Natural Language Processing » MaltParser 
MaltParser » org » maltparser » Malt.java
package org.maltparser;


/**
 * Application class in the MaltParser library.
 *
 * @author Johan Hall
 * @since 1.0
**/
public class Malt {
  /**
   * The starting point of MaltParser
   * 
   * @param args command-line arguments
   */
  public static void main(String[] args) {
    MaltConsoleEngine engine = new MaltConsoleEngine();
    engine.startEngine(args);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.