View Javadoc

1   /*
2    * $Id: IAutoFilterCapability.java,v 1.2 2007/05/24 12:26:17 oeuillot Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9    * @version $Revision: 1.2 $ $Date: 2007/05/24 12:26:17 $
10   */
11  public interface IAutoFilterCapability {
12  
13      /**
14       * Returns a boolean value indicating if the component should apply filter
15       * automatically.
16       * 
17       * @return true if the component should apply filter
18       */
19      boolean isAutoFilter();
20  
21      /**
22       * Sets a boolean value indicating if the component should apply filter
23       * automatically.
24       * 
25       * @param autoFilter
26       *            true if the component should apply filter
27       */
28      void setAutoFilter(boolean autoFilter);
29  }