1 /*
2 * $Id: ISortedComponentsCapability.java,v 1.1 2007/04/20 13:43:05 oeuillot Exp $
3 */
4 package org.rcfaces.core.internal.capability;
5
6 import javax.faces.context.FacesContext;
7
8 import org.rcfaces.core.model.ISortedComponent;
9
10 /**
11 *
12 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
13 * @version $Revision: 1.1 $ $Date: 2007/04/20 13:43:05 $
14 */
15 public interface ISortedComponentsCapability {
16
17 ISortedComponent[] listSortedComponents(FacesContext context);
18 }