diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-07-09 18:23:47 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-07-09 18:23:47 +0300 |
commit | 359710c1bd08266a6956ff3e0762355b8df56cc8 (patch) | |
tree | 904ae7d26b358b567bd59ed736cfee92222fd068 /client | |
parent | 17fda4abbcc5456e4fca00356455e9c6ea558a37 (diff) | |
download | vaadin-framework-359710c1bd08266a6956ff3e0762355b8df56cc8.tar.gz vaadin-framework-359710c1bd08266a6956ff3e0762355b8df56cc8.zip |
Add missing @since 7.5.1 to JavaDoc
Change-Id: I1af9da11330d00554cb19212d694816b83b29aa4
Diffstat (limited to 'client')
4 files changed, 12 insertions, 12 deletions
diff --git a/client/src/com/vaadin/client/ComputedStyle.java b/client/src/com/vaadin/client/ComputedStyle.java index 7a04296b4b..61cb3c2eb6 100644 --- a/client/src/com/vaadin/client/ComputedStyle.java +++ b/client/src/com/vaadin/client/ComputedStyle.java @@ -131,7 +131,7 @@ public class ComputedStyle { /** * Retrieves the given computed property as an integer - * + * * Returns 0 if the property cannot be converted to an integer * * @param name @@ -148,7 +148,7 @@ public class ComputedStyle { /** * Retrieves the given computed property as a double - * + * * Returns NaN if the property cannot be converted to a double * * @param name @@ -205,7 +205,7 @@ public class ComputedStyle { /** * Returns the current width from the DOM. * - * @since + * @since 7.5.1 * @return the computed width */ public double getWidth() { @@ -215,7 +215,7 @@ public class ComputedStyle { /** * Returns the current height from the DOM. * - * @since + * @since 7.5.1 * @return the computed height */ public double getHeight() { diff --git a/client/src/com/vaadin/client/WidgetUtil.java b/client/src/com/vaadin/client/WidgetUtil.java index b9d22193de..4906197b29 100644 --- a/client/src/com/vaadin/client/WidgetUtil.java +++ b/client/src/com/vaadin/client/WidgetUtil.java @@ -1641,7 +1641,7 @@ public class WidgetUtil { * Firefox uses 1/60th of a pixel because it is divisible by three * (https://bugzilla.mozilla.org/show_bug.cgi?id=1070940) * - * @since + * @since 7.5.1 * @param size * the value to round * @return the rounded value @@ -1661,7 +1661,7 @@ public class WidgetUtil { * * IE9+ uses 1/100th of a pixel * - * @since + * @since 7.5.1 * @param size * the value to round * @return the rounded value @@ -1694,7 +1694,7 @@ public class WidgetUtil { /** * Returns the factor used by browsers to round subpixel values * - * @since + * @since 7.5.1 * @return the factor N used by the browser when storing subpixels as X+Y/N */ private static double getSubPixelRoundingFactor() { diff --git a/client/src/com/vaadin/client/ui/VAbstractSplitPanel.java b/client/src/com/vaadin/client/ui/VAbstractSplitPanel.java index e849ee79f3..6c11783d34 100644 --- a/client/src/com/vaadin/client/ui/VAbstractSplitPanel.java +++ b/client/src/com/vaadin/client/ui/VAbstractSplitPanel.java @@ -606,21 +606,21 @@ public abstract class VAbstractSplitPanel extends ComplexPanel { /** * Called when starting drag resize * - * @since + * @since 7.5.1 */ abstract protected void startResize(); /** * Called when stopping drag resize * - * @since + * @since 7.5.1 */ abstract protected void stopResize(); /** * Gets the first container * - * @since + * @since 7.5.1 * @return the firstContainer */ protected Element getFirstContainer() { @@ -630,7 +630,7 @@ public abstract class VAbstractSplitPanel extends ComplexPanel { /** * Gets the second container * - * @since + * @since 7.5.1 * @return the secondContainer */ protected Element getSecondContainer() { diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index 53ccd432c4..58fc532a77 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -4749,7 +4749,7 @@ public class Grid<T> extends ResizeComposite implements /** * Resets the default header cell contents to column header captions. * - * @since + * @since 7.5.1 * @param cell * default header cell for this column */ |