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 10 /**11 * @author Laurent Etiemble12 * @version $Revision: 1.2 $13 */14 public interface Storable15 {16 /**17 * Description of the Method18 *19 * @param visitor Description of the Parameter20 */21 void accept(StoreVisitor visitor);22 }23