Changeset 185


Ignore:
Timestamp:
09/23/11 03:37:25 (13 years ago)
Author:
sherbold
Message:
Location:
trunk/JavaHelperLib/src/de/ugoe/cs/util/console
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java

    r175 r185  
    5252        public void printStacktrace(Exception e); 
    5353 
     54        /** 
     55         * <p> 
     56         * Receives the command strings of all executed commands. 
     57         * </p> 
     58         *  
     59         * @param command 
     60         *            string of the command. 
     61         */ 
     62        public void commandExecuted(String command); 
     63 
    5464} 
  • trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java

    r175 r185  
    117117                return new String(buffer); 
    118118        } 
     119 
     120        /** 
     121         * <p> 
     122         * The {@link TextConsole} ignores this notification. 
     123         * </p> 
     124         *  
     125         * @see de.ugoe.cs.util.console.ConsoleObserver#commandExecuted(java.lang.String) 
     126         */ 
     127        @Override 
     128        public void commandExecuted(String command) { 
     129                // ignores the notification 
     130        } 
    119131} 
Note: See TracChangeset for help on using the changeset viewer.