From d6f0983d09824bfe894c37c5e2513ee81a12ac78 Mon Sep 17 00:00:00 2001 From: Kevin Lamonte Date: Fri, 8 Mar 2019 18:56:41 -0600 Subject: [PATCH] Update javadoc --- src/jexer/package-info.java | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/src/jexer/package-info.java b/src/jexer/package-info.java index 7a5a752..c1c24e8 100644 --- a/src/jexer/package-info.java +++ b/src/jexer/package-info.java @@ -31,30 +31,23 @@ * Jexer - Java Text User Interface library * *

- * This library is currently in design, but when finished it is intended to - * implement a text-based windowing system loosely reminiscient of Borland's - * Turbo Vision - * library. - * - *

- * The library is currently under initial development, usage patterns are - * still being worked on. Generally the goal will be to build applications - * somewhat as follows: + * This library is a text-based windowing system loosely reminiscient 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 + * World" application can be created as simply as this: * *

  * {@code
- * import jexer.*;
+ * import jexer.TApplication;
  *
  * public class MyApplication extends TApplication {
  *
  *     public MyApplication() {
  *         super();
  *
- *         // Create an editor window that has support for copy/paste,
- *         // search text, arrow keys, horizontal and vertical scrollbar, etc.
- *         addEditor();
- *
- *         // Create standard menus for File and Window
+ *         // Create standard menus for Tool, File, and Window.
+ *         addToolMenu();
  *         addFileMenu();
  *         addWindowMenu();
  *     }
-- 
2.27.0