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:57 UTC

svn commit: r784749 - /myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java

Author: bommel
Date: Mon Jun 15 12:15:57 2009
New Revision: 784749

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

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java?rev=784749&r1=784748&r2=784749&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/HasTabIndex.java Mon Jun 15 12:15:57 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()
   void setTabIndex(String tabIndex);