Display a help message
()
| 411 | |
| 412 | /** Display a help message */ |
| 413 | public static void help() { |
| 414 | String nl = Strings.getNl(); |
| 415 | Out.prln( |
| 416 | "For help on command-line options and other information " + nl + |
| 417 | "see the user manual in your GATE distribution or at " + nl + |
| 418 | "http://gate.ac.uk/userguide/" |
| 419 | ); |
| 420 | } // help() |
| 421 | |
| 422 | /** The list of pending URLs to add to the CREOLE register */ |
| 423 | protected static final List<URL> pendingCreoleUrls = new ArrayList<URL>(); |
no test coverage detected