KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > adwt > action > Command


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.action;
8
9
10 /**
11  * Interface needed to implement to Command Pattern.
12  *
13  * @author Laurent Etiemble
14  * @version $Revision: 1.6 $
15  */

16 public interface Command
17 {
18    /** Method to implement executed by the action. */
19    public void execute();
20 }
21
Popular Tags