1 /*2 * EJTools, the Enterprise Java Tools3 *4 * Distributable under LGPL license.5 * See terms of license at www.gnu.org.6 */7 package org.ejtools.adwt.service;8 9 10 /**11 * @author Laurent Etiemble12 * @version $Revision: 1.5 $13 */14 public interface ConsoleService15 {16 /**17 * Description of the Method18 *19 * @param message Description of the Parameter20 */21 public void append(String message);22 23 24 /** Description of the Method */25 public void delete();26 27 28 /** Description of the Method */29 public void copy();30 31 32 /** Description of the Method */33 public void cut();34 35 36 /** Description of the Method */37 public void show();38 39 40 /** Description of the Method */41 public void hide();42 }43