diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-05-12 14:55:59 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-05-12 12:24:43 +0000 |
commit | 77a08ca0f910fb00f97015a751d5f8414c2985eb (patch) | |
tree | 26d1ca7c1774e3286535b9096ebdfe5f3a025949 /client | |
parent | 82033e827fcbfb396886df627a1f8d7c02359e9d (diff) | |
download | vaadin-framework-77a08ca0f910fb00f97015a751d5f8414c2985eb.tar.gz vaadin-framework-77a08ca0f910fb00f97015a751d5f8414c2985eb.zip |
Add missing @sinces to JavaDoc
Change-Id: Ib36d9c591c5089eeacacc94f68e4fbb064e5418d
Diffstat (limited to 'client')
3 files changed, 4 insertions, 3 deletions
diff --git a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java index 78c6b3146b..ccf070698b 100644 --- a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java +++ b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java @@ -277,6 +277,7 @@ public abstract class AbstractComponentConnector extends AbstractConnector /** * Updates the DOM size of this connector's {@link #getWidget() widget}. * + * @since 7.1.15 * @param newWidth * The new width as a CSS string. Cannot be null. * @param newHeight diff --git a/client/src/com/vaadin/client/ui/dd/VDragAndDropManager.java b/client/src/com/vaadin/client/ui/dd/VDragAndDropManager.java index 6449c19251..4ee19328d6 100644 --- a/client/src/com/vaadin/client/ui/dd/VDragAndDropManager.java +++ b/client/src/com/vaadin/client/ui/dd/VDragAndDropManager.java @@ -733,7 +733,7 @@ public class VDragAndDropManager { return dragElement; } - public void attachDragElement() { + private void attachDragElement() { if (dragElement != null && dragElement.getParentElement() == null) { ApplicationConnection connection = getCurrentDragApplicationConnection(); Element dragImageParent; diff --git a/client/src/com/vaadin/client/ui/dd/VDragEvent.java b/client/src/com/vaadin/client/ui/dd/VDragEvent.java index d4b6c6da69..6291a38e42 100644 --- a/client/src/com/vaadin/client/ui/dd/VDragEvent.java +++ b/client/src/com/vaadin/client/ui/dd/VDragEvent.java @@ -285,13 +285,13 @@ public class VDragEvent { * Do additional content sync between <code>original</code> element and its * <code>copy</code> if needed. * - * @since 7.3 + * @since 7.2 * @param original * original element * @param copy * copy of original element */ - protected void syncContent(Element original, Element copy) { + private void syncContent(Element original, Element copy) { for (int i = 0; i < original.getChildCount(); i++) { Node child = original.getChild(i); if (child instanceof Element) { |