コード例 #1
0
ファイル: OpenEphyra.java プロジェクト: rahumateo/ProjectOE
  /**
   * Entry point of Ephyra. Initializes the engine and starts the command line interface.
   *
   * @param args command line arguments are ignored
   */
  public static void main(String[] args) {
    // enable output of status and error messages
    MsgPrinter.enableStatusMsgs(true);
    MsgPrinter.enableErrorMsgs(true);

    // set log file and enable logging
    Logger.setLogfile("log/OpenEphyra");
    Logger.enableLogging(true);

    // initialize Ephyra and start command line interface
    (new OpenEphyra()).commandLine();
  }