KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > adwt > service > HistoryService


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.service;
8
9 import java.net.URL JavaDoc;
10
11 /**
12  * Description of the Class
13  *
14  * @author Laurent Etiemble
15  * @version $Revision: 1.5 $
16  * @todo Javadoc to complete
17  */

18 public interface HistoryService
19 {
20    /**
21     * Description of the Method
22     *
23     * @param url Description of Parameter
24     * @param context Description of Parameter
25     */

26    public void push(URL JavaDoc url, Object JavaDoc context);
27
28
29    /**
30     * Description of the Class
31     *
32     * @author letiembl
33     * @version $Revision: 1.5 $
34     */

35    public interface Holder
36    {
37       /**
38        * Description of the Method
39        *
40        * @param url Description of Parameter
41        * @param context Description of Parameter
42        */

43       public void loadResource(URL JavaDoc url, Object JavaDoc context);
44    }
45 }
46
Popular Tags