Repository: wicket Updated Branches: refs/heads/master 385a5f0e8 -> 24c3a7210
Fix some javadoc errors Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/24c3a721 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/24c3a721 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/24c3a721 Branch: refs/heads/master Commit: 24c3a7210eb0e1a2630d64079137749884b743b9 Parents: 385a5f0e Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Thu Jun 16 23:15:07 2016 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Thu Jun 16 23:15:07 2016 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/wicket/markup/html/form/Form.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/24c3a721/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java index a711c37..ea1788b 100644 --- a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java +++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java @@ -81,8 +81,8 @@ import org.slf4j.LoggerFactory; * {@link Button} or {@link SubmitLink}), just putting e.g. <input type="submit" value="go"/> * suffices. * <p> - * As a {@link IFormSubmitListener} the form gets notified of listener requests in - * {@link #onFormSubmitted()}. By default, the processing of this submit works like this: + * As a {@link IRequestListener} the form gets notified of listener requests in + * {@link #onRequest()}. By default, the processing of this submit works like this: * <ul> * <li>All nested {@link FormComponent}s are notified of new input via * {@link FormComponent#inputChanged()}</li> @@ -1186,7 +1186,7 @@ public class Form<T> extends WebMarkupContainer /** * Method for dispatching/calling a interface on a page from the given url. Used by - * {@link org.apache.wicket.markup.html.form.Form#onFormSubmitted()} for dispatching events + * {@link Form#onRequest()} for dispatching events * * @param page * The page where the event should be called on.
