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.util;8 9 10 /**11 * @author Laurent Etiemble12 * @version $Revision: 1.3 $13 */14 public interface ObjectIndexer15 {16 /**17 * Description of the Method18 *19 * @param key Description of the Parameter20 * @param value Description of the Parameter21 * @return Description of the Return Value22 */23 public Object put(Object key, Object value);24 25 26 /**27 * Description of the Method28 *29 * @param key Description of the Parameter30 * @return Description of the Return Value31 */32 public Object remove(Object key);33 34 35 /**36 * Description of the Method37 *38 * @param key Description of the Parameter39 * @return Description of the Return Value40 */41 public Object get(Object key);42 }43