KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > portlets > nav > component > UINavigationEdit


1 package org.exoplatform.portlets.nav.component;
2
3 import org.exoplatform.faces.core.component.UIExoComponentBase;
4
5
6 /**
7  *
8  * @version $Revision: 1.1.1.1 $ $Date: 2004/08/05 13:11:13 $
9  * @author Fahrid Djebbari
10  *
11  */

12
13 public class UINavigationEdit extends UIExoComponentBase
14 {
15     public static String JavaDoc COMPONENT_ID = "navigation-edit";
16     public static String JavaDoc RENDERER_TYPE = "NavigationEditRenderer";
17     
18     public UINavigationEdit()
19     {
20         this.setId(COMPONENT_ID);
21         this.setRendererType(RENDERER_TYPE);
22     }
23 }
24
Popular Tags