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.util.state;8 9 import java.util.Map ;10 11 /**12 * @author Laurent Etiemble13 * @version $Revision: 1.2 $14 */15 public class DefaultRule implements Rule16 {17 /**18 * Description of the Method19 *20 * @param context Description of the Parameter21 */22 public void loadBody(Map context)23 {24 }25 26 27 /**28 * Description of the Method29 *30 * @param context Description of the Parameter31 */32 public void loadEnter(Map context)33 {34 }35 36 37 /**38 * Description of the Method39 *40 * @param context Description of the Parameter41 */42 public void loadExit(Map context)43 {44 }45 }46