You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2010/07/26 15:19:56 UTC

svn commit: r979271 - /click/trunk/click/framework/src/org/apache/click/Control.java

Author: sabob
Date: Mon Jul 26 13:19:55 2010
New Revision: 979271

URL: http://svn.apache.org/viewvc?rev=979271&view=rev
Log:
javadoc

Modified:
    click/trunk/click/framework/src/org/apache/click/Control.java

Modified: click/trunk/click/framework/src/org/apache/click/Control.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/Control.java?rev=979271&r1=979270&r2=979271&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/Control.java (original)
+++ click/trunk/click/framework/src/org/apache/click/Control.java Mon Jul 26 13:19:55 2010
@@ -451,20 +451,20 @@ public interface Control extends Seriali
     public Set<Behavior> getBehaviors();
 
     /**
-     * Returns <tt>true</tt> if this control is an AJAX target, <tt>false</tt>
+     * Returns <tt>true</tt> if this control is an Ajax target, <tt>false</tt>
      * otherwise.
      * <p/>
      * In order for a Control to be considered as an Ajax target it must be
      * registered through {@link org.apache.click.ControlRegistry#registerAjaxTarget(org.apache.click.Control) ControlRegistry.registerAjaxTarget}.
      * <p/>
-     * When the Click handles an AJAX request it iterates the Controls
+     * When the Click handles an Ajax request it iterates the Controls
      * registered with the {@link org.apache.click.ControlRegistry ControlRegistry}
-     * and checks if one of them is the AJAX target by calling
+     * and checks if one of them is the Ajax target by calling
      * {@link #isAjaxTarget(org.apache.click.Context) isAjaxTarget}. If <tt>isAjaxTarget</tt>
      * returns true, Click will process that Control's {@link #getBehaviors() behaviors}.
      * <p/>
      * <b>Please note:</b> there can only be one target control, so the first
-     * Control that is identified as the AJAX target will be processed, the other
+     * Control that is identified as the Ajax target will be processed, the other
      * controls will be skipped.
      * <p/>
      * The most common way to check whether a Control is the Ajax target is to
@@ -488,7 +488,7 @@ public interface Control extends Seriali
      * its <tt>id</tt>, and if that isn't available check against its <tt>name</tt>.
      *
      * @param context the request context
-     * @return <tt>true</tt> if this control is an AJAX target, <tt>false</tt>
+     * @return <tt>true</tt> if this control is an Ajax target, <tt>false</tt>
      * otherwise
      */
     public boolean isAjaxTarget(Context context);