KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > arooa > ComponentRestorer


1 /*
2  * (c) Rob Gordon 2005
3  */

4 package org.oddjob.arooa;
5
6 /**
7  * An implementation is able to restore a component which will be
8  * used as a primary component in the ArooaFramework.
9  *
10  * @author Rob Gordon.
11  */

12 public interface ComponentRestorer {
13
14     /**
15      * Restore a component using the given id.
16      *
17      * @param id The id of the component.
18      * @return The component or null if none can be found.
19      */

20     public Object JavaDoc restore(String JavaDoc id);
21 }
22
Popular Tags