1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.faces.core.component;6 7 import java.util.List ;8 9 /**10 * Jun 2, 2004 11 * @author: Tuan Nguyen12 * @email: tuan08@users.sourceforge.net13 * @version: $ID$14 **/15 public interface Node {16 public String getId() ;17 public String getName() ;18 public String getIcon() ;19 public String getDescription() ;20 public void setRendered(boolean b) ;21 public boolean isRendered() ;22 public List getChildren() ;23 }24