View Javadoc

1   /*
2    * $Id: ISortedChildrenCapability.java,v 1.1 2007/04/20 13:43:05 oeuillot Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   import javax.faces.component.UIComponent;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.1 $ $Date: 2007/04/20 13:43:05 $
12   */
13  public interface ISortedChildrenCapability {
14  
15      /**
16       * Set the ordered list of the sorted components
17       */
18      void setSortedChildren(UIComponent components[]);
19  
20      /**
21       * Returns a string value giving the ordered list of the sorted components.
22       * 
23       * @return ordered list of the sorted components
24       */
25      UIComponent[] getSortedChildren();
26  
27  }