Repository: wicket Updated Branches: refs/heads/master b41368ef0 -> 0606862b3
fixed cut&past error Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/0606862b Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/0606862b Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/0606862b Branch: refs/heads/master Commit: 0606862b350aa5b1e6a7bf2adc3eead1e6bf4dda Parents: b41368e Author: andrea del bene <[email protected]> Authored: Tue Nov 4 23:30:10 2014 +0100 Committer: andrea del bene <[email protected]> Committed: Tue Nov 4 23:30:10 2014 +0100 ---------------------------------------------------------------------- .../apache/wicket/ajax/attributes/AjaxCallListener.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/0606862b/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/AjaxCallListener.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/AjaxCallListener.java b/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/AjaxCallListener.java index ed6b352..b0e6be2 100644 --- a/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/AjaxCallListener.java +++ b/wicket-core/src/main/java/org/apache/wicket/ajax/attributes/AjaxCallListener.java @@ -61,7 +61,7 @@ public class AjaxCallListener implements IAjaxCallListener, IComponentAwareHeade * Sets the JavaScript code that will be returned by {@link #getBeforeSendHandler(Component)}. * If this code was already set, the new one will be appended to the existing one. * - * @param before + * @param beforeSend * the JavaScript code for the corresponding handler * @return This */ @@ -82,7 +82,7 @@ public class AjaxCallListener implements IAjaxCallListener, IComponentAwareHeade * Sets the JavaScript code that will be returned by {@link #getAfterHandler(Component)}. * If this code was already set, the new one will be appended to the existing one. * - * @param before + * @param after * the JavaScript code for the corresponding handler * @return This */ @@ -103,7 +103,7 @@ public class AjaxCallListener implements IAjaxCallListener, IComponentAwareHeade * Sets the JavaScript code that will be returned by {@link #getSuccessHandler(Component)}. * If this code was already set, the new one will be appended to the existing one. * - * @param before + * @param success * the JavaScript code for the corresponding handler * @return This */ @@ -124,7 +124,7 @@ public class AjaxCallListener implements IAjaxCallListener, IComponentAwareHeade * Sets the JavaScript code that will be returned by {@link #getFailureHandler(Component)}. * If this code was already set, the new one will be appended to the existing one. * - * @param before + * @param failure * the JavaScript code for the corresponding handler * @return This */ @@ -145,7 +145,7 @@ public class AjaxCallListener implements IAjaxCallListener, IComponentAwareHeade * Sets the JavaScript code that will be returned by {@link #getCompleteHandler(Component)}. * If this code was already set, the new one will be appended to the existing one. * - * @param before + * @param complete * the JavaScript code for the corresponding handler * @return This */ @@ -166,7 +166,7 @@ public class AjaxCallListener implements IAjaxCallListener, IComponentAwareHeade * Sets the JavaScript code that will be returned by {@link #getPrecondition(Component)}. * If this code was already set, the new one will be appended to the existing one. * - * @param before + * @param precondition * the JavaScript code for the precondition * @return This */
