summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2015-07-09 18:23:47 +0300
committerTeemu Suo-Anttila <teemusa@vaadin.com>2015-07-10 15:16:52 +0300
commit79d1c0681ff500f275a8b3254d544d68f8da2ef2 (patch)
tree99c3a0b365b7893b8885ab895a80b63ba5938910 /client
parent7d439079a8f9f3a8d5db33c6b7fbed777b5590a3 (diff)
downloadvaadin-framework-79d1c0681ff500f275a8b3254d544d68f8da2ef2.tar.gz
vaadin-framework-79d1c0681ff500f275a8b3254d544d68f8da2ef2.zip
Add missing @since 7.5.1 to JavaDoc
Change-Id: I8dc89fe5ec8cda3998e7cb08b71b0ed10a4a1ce4
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ComputedStyle.java8
-rw-r--r--client/src/com/vaadin/client/WidgetUtil.java6
-rw-r--r--client/src/com/vaadin/client/ui/VAbstractSplitPanel.java8
-rw-r--r--client/src/com/vaadin/client/widgets/Grid.java2
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
*/