From: SVN by r. <sv...@ca...> - 2008-03-02 13:51:05
|
Author: roy Date: 2008-03-02 14:50:55 +0100 (Sun, 02 Mar 2008) New Revision: 245 Modified: src/main/java/nl/improved/sqlclient/SQLShell.java Log: added some javadoc Modified: src/main/java/nl/improved/sqlclient/SQLShell.java =================================================================== --- src/main/java/nl/improved/sqlclient/SQLShell.java 2008-03-02 13:48:44 UTC (rev 244) +++ src/main/java/nl/improved/sqlclient/SQLShell.java 2008-03-02 13:50:55 UTC (rev 245) @@ -40,7 +40,14 @@ */ public class SQLShell extends Window { + /** + * The current command thread executing a SQLShell command. + */ private CommandThread commandThread; + /** + * True when the prompt should be visible. + * Normally it is not visible during the execution of a command + */ private boolean showPrompt = true; /** @@ -98,6 +105,9 @@ */ private CommandManager commands = new CommandManager(); + /** + * A map of string key representation to a action that should be executed when a specific key is pressed. + */ private Map<String, KeyAction> actionKeys = new LinkedHashMap<String, KeyAction>(); /** |