You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2016/03/09 13:11:28 UTC

wicket git commit: javadoc: describe failure handler function arguments

Repository: wicket
Updated Branches:
  refs/heads/master 02b9e4c39 -> 22592e5a2


javadoc: describe failure handler function arguments


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/22592e5a
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/22592e5a
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/22592e5a

Branch: refs/heads/master
Commit: 22592e5a20c6c0b0cd6d93fdc7efdff233c595f9
Parents: 02b9e4c
Author: Sven Meier <sv...@apache.org>
Authored: Wed Mar 9 11:54:37 2016 +0100
Committer: Sven Meier <sv...@apache.org>
Committed: Wed Mar 9 11:54:37 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/22592e5a/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java b/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java
index 0274766..e671c0a 100644
--- a/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java
+++ b/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/IAjaxCallListener.java
@@ -134,6 +134,9 @@ public interface IAjaxCallListener
 	 * will be executed in a function that receives the following parameters:
 	 * <ol>
 	 * <li>attrs - the AjaxRequestAttributes as JSON</li>
+	 * <li>jqXHR - the jQuery XMLHttpRequest object</li>
+	 * <li>errorMessage - in case of HTTP error the textual portion of the HTTP status</li>
+	 * <li>textStatus - type of failure: null, "timeout", "error", "abort" or "parsererror"</li>
 	 * </ol>
 	 * 
 	 * @param component