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.action;8 9 10 /**11 * Interface needed to implement to Command Pattern.12 *13 * @author Laurent Etiemble14 * @version $Revision: 1.6 $15 */16 public interface Command17 {18 /** Method to implement executed by the action. */19 public void execute();20 }21