KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > servlet > http > jsp > tagext > tree > TreeRenderer


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.servlet.http.jsp.tagext.tree;
8
9 import java.io.Serializable JavaDoc;
10
11 /**
12  * Description of the Class
13  *
14  * @author Laurent Etiemble
15  * @version $Revision: 1.1 $
16  * @todo Javadoc to complete
17  */

18 public interface TreeRenderer extends Serializable JavaDoc
19 {
20    /**
21     * Gets the icon attribute of the TreeRenderer object
22     *
23     * @param o Description of the Parameter
24     * @return The icon value
25     */

26    public String JavaDoc getIcon(Object JavaDoc o);
27
28
29    /**
30     * Gets the displayName attribute of the TreeRenderer object
31     *
32     * @param o Description of the Parameter
33     * @return The displayName value
34     */

35    public String JavaDoc getDisplayName(Object JavaDoc o);
36 }
37
Popular Tags