KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > adwt > util > ObjectIndexer


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
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 Etiemble
12  * @version $Revision: 1.3 $
13  */

14 public interface ObjectIndexer
15 {
16    /**
17     * Description of the Method
18     *
19     * @param key Description of the Parameter
20     * @param value Description of the Parameter
21     * @return Description of the Return Value
22     */

23    public Object JavaDoc put(Object JavaDoc key, Object JavaDoc value);
24
25
26    /**
27     * Description of the Method
28     *
29     * @param key Description of the Parameter
30     * @return Description of the Return Value
31     */

32    public Object JavaDoc remove(Object JavaDoc key);
33
34
35    /**
36     * Description of the Method
37     *
38     * @param key Description of the Parameter
39     * @return Description of the Return Value
40     */

41    public Object JavaDoc get(Object JavaDoc key);
42 }
43
Popular Tags