Updated Branches: refs/heads/master 9fe614c8d -> 123561abe
Javadoc fix Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/123561ab Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/123561ab Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/123561ab Branch: refs/heads/master Commit: 123561abe154394bc66e29d873d5844de69ac1c0 Parents: 9fe614c Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Fri Apr 20 16:55:15 2012 +0300 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Fri Apr 20 16:56:47 2012 +0300 ---------------------------------------------------------------------- .../wicket/markup/html/form/NumberTextField.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/123561ab/wicket-core/src/main/java/org/apache/wicket/markup/html/form/NumberTextField.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/NumberTextField.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/NumberTextField.java index be20b46..e76979d 100644 --- a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/NumberTextField.java +++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/NumberTextField.java @@ -27,8 +27,8 @@ import org.apache.wicket.validation.validator.RangeValidator; * A {@link TextField} for HTML5 <input> with type <em>number</em>. * * <p> - * Automatically validates the input against the configured {@link #setMinimum(Double) min} and - * {@link #setMaximum(Double) max} attributes. If any of them is <code>null</code> then + * Automatically validates the input against the configured {@link #setMinimum(Number) min} and + * {@link #setMaximum(Number) max} attributes. If any of them is <code>null</code> then * {@link Double#MIN_VALUE} and {@link Double#MAX_VALUE} are used respectfully. * * Note: {@link #setType(Class)} must be called explicitly!
