001 package org.maltparser; 002 003 004 /** 005 * Application class in the MaltParser library. 006 * 007 * @author Johan Hall 008 * @since 1.0 009 **/ 010 public class Malt { 011 /** 012 * The starting point of MaltParser 013 * 014 * @param args command-line arguments 015 */ 016 public static void main(String[] args) { 017 MaltConsoleEngine engine = new MaltConsoleEngine(); 018 engine.startEngine(args); 019 } 020 }