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.2 $13 */14 public interface ObjectSearcher15 {16 /**17 * Description of the Method18 *19 * @param o Description of the Parameter20 * @return Description of the Return Value21 */22 public Object find(Object o);23 24 25 /**26 * Sets the indexer attribute of the ObjectSearcher object27 *28 * @param indexer The new indexer value29 */30 public void setIndexer(ObjectIndexer indexer);31 }32