X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fpackage-info.java;h=300f9731a26ea9728ac27e4ef91e82f0ecbc2f34;hb=HEAD;hp=c1c24e87f52ba07fa7750f733b18f2df6f116665;hpb=d6f0983d09824bfe894c37c5e2513ee81a12ac78;p=fanfix.git diff --git a/src/jexer/package-info.java b/src/jexer/package-info.java index c1c24e8..300f973 100644 --- a/src/jexer/package-info.java +++ b/src/jexer/package-info.java @@ -31,7 +31,7 @@ * Jexer - Java Text User Interface library * *

- * This library is a text-based windowing system loosely reminiscient of + * This library is a text-based windowing system loosely reminiscent of * Borland's Turbo * Vision library. Jexer's goal is to enable people to get up and * running with minimum hassle and lots of polish. A very quick "Hello @@ -43,8 +43,8 @@ * * public class MyApplication extends TApplication { * - * public MyApplication() { - * super(); + * public MyApplication() throws Exception { + * super(BackendType.XTERM); * * // Create standard menus for Tool, File, and Window. * addToolMenu(); @@ -52,7 +52,7 @@ * addWindowMenu(); * } * - * public static void main(String [] args) { + * public static void main(String [] args) throws Exception { * MyApplication app = new MyApplication(); * app.run(); * }