KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > adwt > service > ConsoleService


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
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 Etiemble
12  * @version $Revision: 1.5 $
13  */

14 public interface ConsoleService
15 {
16    /**
17     * Description of the Method
18     *
19     * @param message Description of the Parameter
20     */

21    public void append(String JavaDoc 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
Popular Tags