View Javadoc

1   /*
2    * $Id: ITabIndexCapability.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 ITabIndexCapability {
14  
15      /**
16       * Returns an int value specifying the position of this element in the
17       * tabbing order for the current document. This value must be an integer
18       * between 0 and 32767.
19       * 
20       * @return index
21       */
22      Integer getTabIndex();
23  
24      /**
25       * Sets an int value specifying the position of this element in the tabbing
26       * order for the current document. This value must be an integer between 0
27       * and 32767.
28       * 
29       * @param tabIndex
30       *            index
31       */
32      void setTabIndex(Integer tabIndex);
33  }