Repository: wicket Updated Branches: refs/heads/master 584b7f6a2 -> a94217728
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/a9421772 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a9421772 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/a9421772 Branch: refs/heads/master Commit: a942177288ebdb1bc3a87a80ebf04766c9783579 Parents: 584b7f6 Author: Sven Meier <[email protected]> Authored: Wed Sep 26 09:20:04 2018 +0200 Committer: Sven Meier <[email protected]> Committed: Wed Sep 26 09:20:23 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/a9421772/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 9f54710..d408dae 100644 --- a/wicket-core/src/main/java/org/apache/wicket/Component.java +++ b/wicket-core/src/main/java/org/apache/wicket/Component.java @@ -1024,7 +1024,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. * @@ -2145,14 +2145,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)
