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.service;8 9 10 /**11 * Description of the Class12 *13 * @author Laurent Etiemble14 * @version $Revision: 1.5 $15 * @todo Javadoc to complete16 */17 public interface PreferencesService18 {19 /** Description of the Method */20 public void show();21 22 23 /** Description of the Method */24 public void load();25 26 27 /** Description of the Method */28 public void save();29 }30 31