View Javadoc

1   /*
2    * $Id: IWheelSelectionCapability.java,v 1.1.2.1 2011/01/26 16:49:58 flefevere Exp $
3    * 
4    */
5   package org.rcfaces.core.component.capability;
6   
7   /**
8    * 
9    * @author Fred (latest modification by $Author: flefevere $)
10   * @version $Revision: 1.1.2.1 $ $Date: 2011/01/26 16:49:58 $
11   */
12  public interface IWheelSelectionCapability {
13  
14      /**
15       * Returns a boolean value indicating wether the mouse wheel change the selection
16       * 
17       * @return wheelSelection boolean property
18       */
19      boolean isWheelSelection();
20  
21      /**
22       * Sets a boolean value indicating wether the component mouse wheel change the selection
23       * 
24       * @param wheelSelection
25       *            wheelSelection boolean property
26       */
27      void setWheelSelection(boolean wheelSelection);
28  }