summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatrik <patrik@vaadin.com>2015-08-05 13:55:45 +0300
committerpatrik <patrik@vaadin.com>2015-08-05 14:04:26 +0300
commit2da9519826a07376b8e282ef7ea2b07939509748 (patch)
tree5401b1156a89c1fde7a16617b639f793c729c789
parentf031c9a46c9d4b1eedb9e86c2e72ab97f5847593 (diff)
downloadvaadin-framework-2da9519826a07376b8e282ef7ea2b07939509748.tar.gz
vaadin-framework-2da9519826a07376b8e282ef7ea2b07939509748.zip
Add @since for change 11526 ticket #175907.5.3
Change-Id: I3e4540a5a1fe87c82c8ce2c4d92b21c8f94a4d4f
-rw-r--r--client/src/com/vaadin/client/ComputedStyle.java8
-rw-r--r--shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java2
2 files changed, 5 insertions, 5 deletions
diff --git a/client/src/com/vaadin/client/ComputedStyle.java b/client/src/com/vaadin/client/ComputedStyle.java
index 1391a84bfe..cd90e0e78b 100644
--- a/client/src/com/vaadin/client/ComputedStyle.java
+++ b/client/src/com/vaadin/client/ComputedStyle.java
@@ -283,7 +283,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom border width
*
- * @since
+ * @since 7.5.3
* @return the sum of the top and bottom border
*/
public double getBorderHeight() {
@@ -296,7 +296,7 @@ public class ComputedStyle {
/**
* Returns the sum of the left and right border width
*
- * @since
+ * @since 7.5.3
* @return the sum of the left and right border
*/
public double getBorderWidth() {
@@ -309,7 +309,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom padding
*
- * @since
+ * @since 7.5.3
* @return the sum of the top and bottom padding
*/
public double getPaddingHeight() {
@@ -322,7 +322,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom padding
*
- * @since
+ * @since 7.5.3
* @return the sum of the left and right padding
*/
public double getPaddingWidth() {
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java
index cf4e95d078..8711a757a1 100644
--- a/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java
+++ b/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java
@@ -60,7 +60,7 @@ public interface GridClientRpc extends ClientRpc {
* Informs the Grid that all items have been selected or not selected on the
* server side.
*
- * @since
+ * @since 7.5.3
* @param allSelected
* <code>true</code> to check the select all checkbox,
* <code>false</code> to uncheck it.