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 2018/09/26 07:27:17 UTC

wicket git commit: WICKET-6594 improved javadoc

Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x d44ba2673 -> 20c0a2b8a


WICKET-6594 improved javadoc


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

Branch: refs/heads/wicket-7.x
Commit: 20c0a2b8aa1bc661c33936dda224279259d4e901
Parents: d44ba26
Author: Sven Meier <sv...@apache.org>
Authored: Wed Sep 26 09:20:04 2018 +0200
Committer: Sven Meier <sv...@apache.org>
Committed: Wed Sep 26 09:26:22 2018 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/wicket/Component.java    | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/20c0a2b8/wicket-core/src/main/java/org/apache/wicket/Component.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/Component.java b/wicket-core/src/main/java/org/apache/wicket/Component.java
index 3057c8c..368941a 100644
--- a/wicket-core/src/main/java/org/apache/wicket/Component.java
+++ b/wicket-core/src/main/java/org/apache/wicket/Component.java
@@ -1084,7 +1084,7 @@ public abstract class Component
 	}
 
 	/**
-	 * Redirects to any intercept page previously specified by a call to redirectToInterceptPage.
+	 * Redirects to any intercept page previously specified by a call to {@link #redirectToInterceptPage(Page)}.
 	 * The redirect is done by throwing an exception. If there is no intercept page no exception
 	 * will be thrown and the program flow will continue uninterrupted.
 	 * 
@@ -2276,14 +2276,16 @@ public abstract class Component
 	}
 
 	/**
-	 * Redirects browser to an intermediate page such as a sign-in page. The current request's url
-	 * is saved for future use by method continueToOriginalDestination(); Only use this method when
-	 * you plan to continue to the current url at some later time; otherwise just use
-	 * setResponsePage or - when you are in a constructor or checkAccessMethod, call redirectTo.
+	 * Redirects browser to an intermediate page such as a sign-in page. The current request's URL
+	 * is saved for future use by method {@link #continueToOriginalDestination()}; only use this method when
+	 * you plan to continue to the current URL at some later time; otherwise just set a new response page.
 	 * 
 	 * @param page
 	 *            The sign in page
-	 * 
+	 *
+	 * @see #setResponsePage(Class)
+	 * @see #setResponsePage(IRequestablePage)
+	 * @see #setResponsePage(Class, PageParameters)
 	 * @see Component#continueToOriginalDestination()
 	 */
 	public final void redirectToInterceptPage(final Page page)