fix example
authorKevin Lamonte <kevin.lamonte@gmail.com>
Sat, 9 Mar 2019 15:24:15 +0000 (09:24 -0600)
committerKevin Lamonte <kevin.lamonte@gmail.com>
Sat, 9 Mar 2019 15:24:15 +0000 (09:24 -0600)
src/jexer/package-info.java

index f2769a0facf8392f13bf5e5f12ca26f934ffd49e..300f9731a26ea9728ac27e4ef91e82f0ecbc2f34 100644 (file)
@@ -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();
  *     }