You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by al...@apache.org on 2007/05/30 10:39:40 UTC

svn commit: r542778 - /incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/IAjaxIndicatorAware.java

Author: almaw
Date: Wed May 30 01:39:39 2007
New Revision: 542778

URL: http://svn.apache.org/viewvc?view=rev&rev=542778
Log:
Update Javadoc to indicate you can attach this to a parent.

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/IAjaxIndicatorAware.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/IAjaxIndicatorAware.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/IAjaxIndicatorAware.java?view=diff&rev=542778&r1=542777&r2=542778
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/IAjaxIndicatorAware.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/ajax/IAjaxIndicatorAware.java Wed May 30 01:39:39 2007
@@ -20,11 +20,11 @@
 /**
  * This interface makes it trivial to use busy indicators for ajax requests.
  * This interface can be implemented by a component that has an ajax behavior
- * attached to it, or by the ajax behavior itself. If this is the case
- * javascript will be added automatically that will show a markup element
- * pointed to by the {@link #getAjaxIndicatorMarkupId()} markup id attribute
- * when the ajax request begins, and hide it when the ajax requests succeeds or
- * fails.
+ * attached to it, or any parent of the component, or by the ajax behavior
+ * itself. If this is the case javascript will be added automatically that will
+ * show a markup element pointed to by the {@link #getAjaxIndicatorMarkupId()}
+ * markup id attribute when the ajax request begins, and hide it when the ajax
+ * requests succeeds or fails.
  * <p>
  * If both a component and a behavior implement this interface, the component
  * will take precedence.