You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2009/06/15 14:15:38 UTC

svn commit: r784748 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java

Author: bommel
Date: Mon Jun 15 12:15:38 2009
New Revision: 784748

URL: http://svn.apache.org/viewvc?rev=784748&view=rev
Log:
(TOBAGO-764) Documentation and clarification of tabIndex attribute usage

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java?rev=784748&r1=784747&r2=784748&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java Mon Jun 15 12:15:38 2009
@@ -26,6 +26,18 @@
  */
 public interface HasTabIndex {
 
+  /**
+   * Controls the navigation of the focus through the
+   * input controls on a page with the Tab-Key.
+   * The navigation starts from the element with
+   * the lowest tabIndex value to the element with the highest value.
+   * Elements that have identical tabIndex values should be navigated
+   * in the order they appear in the character stream
+   * Elements that are disabled or with a negative tabIndex
+   * do not participate in the tabbing order.
+   *
+   * @param tabIndex
+   */
   @TagAttribute
   @UIComponentTagAttribute(type = "java.lang.Integer")
   void setTabIndex(String tabIndex);