summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/src/main/java/com/vaadin/client/ComputedStyle.java2
-rw-r--r--client/src/main/java/com/vaadin/client/ui/VFlash.java2
2 files changed, 3 insertions, 1 deletions
diff --git a/client/src/main/java/com/vaadin/client/ComputedStyle.java b/client/src/main/java/com/vaadin/client/ComputedStyle.java
index e9108f2ee6..5f937ad372 100644
--- a/client/src/main/java/com/vaadin/client/ComputedStyle.java
+++ b/client/src/main/java/com/vaadin/client/ComputedStyle.java
@@ -370,6 +370,7 @@ public class ComputedStyle {
* Returns the current height, padding and border from the DOM.
*
* @return the computed height including padding and borders
+ * @since 8.0.5
*/
public double getHeightIncludingBorderPadding() {
double h = getHeight();
@@ -385,6 +386,7 @@ public class ComputedStyle {
* Returns the current width, padding and border from the DOM.
*
* @return the computed width including padding and borders
+ * @since 8.0.5
*/
public double getWidthIncludingBorderPadding() {
double w = getWidth();
diff --git a/client/src/main/java/com/vaadin/client/ui/VFlash.java b/client/src/main/java/com/vaadin/client/ui/VFlash.java
index 6c45cf52ac..4a25a9cfcc 100644
--- a/client/src/main/java/com/vaadin/client/ui/VFlash.java
+++ b/client/src/main/java/com/vaadin/client/ui/VFlash.java
@@ -143,11 +143,11 @@ public class VFlash extends HTML {
*
* Triggers embed resizing if percentage sizes are in use.
*
- * @since 7.7.8
* @param slotOffsetHeight
* offset height of the layout slot
* @param slotOffsetWidth
* offset width of the layout slot
+ * @since 7.7.8
*/
public void setSlotHeightAndWidth(int slotOffsetHeight,
int slotOffsetWidth) {