You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/12/06 17:59:35 UTC

svn commit: r1211022 - /tapestry/tapestry5/branches/5.3/tapestry-core/src/main/java/org/apache/tapestry5/FieldFocusPriority.java

Author: hlship
Date: Tue Dec  6 16:59:34 2011
New Revision: 1211022

URL: http://svn.apache.org/viewvc?rev=1211022&view=rev
Log:
Make some fixes to the FieldFocusPriority JavaDoc

Modified:
    tapestry/tapestry5/branches/5.3/tapestry-core/src/main/java/org/apache/tapestry5/FieldFocusPriority.java

Modified: tapestry/tapestry5/branches/5.3/tapestry-core/src/main/java/org/apache/tapestry5/FieldFocusPriority.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/5.3/tapestry-core/src/main/java/org/apache/tapestry5/FieldFocusPriority.java?rev=1211022&r1=1211021&r2=1211022&view=diff
==============================================================================
--- tapestry/tapestry5/branches/5.3/tapestry-core/src/main/java/org/apache/tapestry5/FieldFocusPriority.java (original)
+++ tapestry/tapestry5/branches/5.3/tapestry-core/src/main/java/org/apache/tapestry5/FieldFocusPriority.java Tue Dec  6 16:59:34 2011
@@ -1,4 +1,4 @@
-//  Copyright 2008, 2010 The Apache Software Foundation
+//  Copyright 2008, 2010, 2011 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@ package org.apache.tapestry5;
 /**
  * Used to determine which field on a page should receive focus, based on its status.
  *
- * @see org.apache.tapestry5.RenderSupport#autofocus(FieldFocusPriority, String)
+ * @see org.apache.tapestry5.services.javascript.JavaScriptSupport#autofocus(FieldFocusPriority, String)
  */
 public enum FieldFocusPriority
 {
@@ -32,7 +32,7 @@ public enum FieldFocusPriority
     REQUIRED,
 
     /**
-     * A field that contains a validation error, the highest priority.
+     * A field that contains a validation error, the highest normal priority.
      */
     IN_ERROR,
 
@@ -41,6 +41,7 @@ public enum FieldFocusPriority
      * than {@link #IN_ERROR}.
      *
      * @since 5.1.0.4
+     * @see org.apache.tapestry5.corelib.mixins.FormFieldFocus
      */
     OVERRIDE;
 }