View Javadoc

1   /*
2    * $Id: IMultipleSelectCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3    * 
4    */
5   package org.rcfaces.core.component.capability;
6   
7   /**
8    * 
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
11   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
12   */
13  public interface IMultipleSelectCapability {
14  
15      /**
16       * Returns a boolean value indicating wether multiple selection is
17       * permitted.
18       * 
19       * @return boolean
20       */
21      boolean isMultipleSelect();
22  
23      /**
24       * Sets a boolean value indicating wether multiple selection is permitted.
25       * 
26       * @param multipleSelect
27       *            boolean
28       */
29      void setMultipleSelect(boolean multipleSelect);
30  }