X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjexer%2Fpackage-info.java;h=f2769a0facf8392f13bf5e5f12ca26f934ffd49e;hb=dd459b432853d1583e31c45ee514395aa9577fdf;hp=822b28c34db2e75d82db2b75280f66d3768f92bb;hpb=e16dda65585466c8987bd1efd718431450a96605;p=fanfix.git diff --git a/src/jexer/package-info.java b/src/jexer/package-info.java index 822b28c..f2769a0 100644 --- a/src/jexer/package-info.java +++ b/src/jexer/package-info.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2016 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -31,31 +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. + * 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 + * World" application can be created as simply as this: * - *

- * 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: - * - *

*

  * {@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();
  *     }