summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPekka Hyvönen <pekka@vaadin.com>2015-05-11 14:05:40 +0300
committerVaadin Code Review <review@vaadin.com>2015-05-11 17:32:36 +0000
commit201ae89df5c999efb20100e02040209c306b3d0f (patch)
tree01108eeae8b8f2876df51ee9aab417624f52c083
parent5ff8617c5cbae50ecdab35c1fa83dea342c69eb4 (diff)
downloadvaadin-framework-201ae89df5c999efb20100e02040209c306b3d0f.tar.gz
vaadin-framework-201ae89df5c999efb20100e02040209c306b3d0f.zip
Updated all empty @since tags to be published in 7.5.0
Removed invalid @since from MarginInfo. Change-Id: I7ad0dee47e8686c5cbca05ca1363ae8741642be8
-rw-r--r--client/src/com/vaadin/client/WidgetUtil.java12
-rw-r--r--client/src/com/vaadin/client/ui/dd/DragAndDropHandler.java2
-rw-r--r--client/src/com/vaadin/client/widgets/Escalator.java4
-rw-r--r--client/src/com/vaadin/client/widgets/Grid.java4
-rw-r--r--server/src/com/vaadin/server/GenericFontIcon.java4
-rw-r--r--server/src/com/vaadin/server/VaadinServlet.java2
-rw-r--r--server/src/com/vaadin/server/communication/JSR356WebsocketInitializer.java2
-rw-r--r--server/src/com/vaadin/server/communication/PushAtmosphereHandler.java2
-rw-r--r--server/src/com/vaadin/server/communication/PushHandler.java4
-rw-r--r--server/src/com/vaadin/server/communication/PushRequestHandler.java2
-rw-r--r--server/src/com/vaadin/ui/AbstractColorPicker.java12
-rw-r--r--server/src/com/vaadin/ui/AbstractComponent.java4
-rw-r--r--server/src/com/vaadin/ui/AbstractSelect.java8
-rw-r--r--server/src/com/vaadin/ui/AbstractSplitPanel.java8
-rw-r--r--server/src/com/vaadin/ui/Grid.java20
-rw-r--r--server/src/com/vaadin/ui/Tree.java6
-rw-r--r--server/src/com/vaadin/ui/declarative/Design.java8
-rw-r--r--server/src/com/vaadin/ui/declarative/DesignContext.java14
-rw-r--r--server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java2
-rw-r--r--shared/src/com/vaadin/shared/ApplicationConstants.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/MarginInfo.java1
21 files changed, 61 insertions, 62 deletions
diff --git a/client/src/com/vaadin/client/WidgetUtil.java b/client/src/com/vaadin/client/WidgetUtil.java
index a9cd23c841..3157b844bd 100644
--- a/client/src/com/vaadin/client/WidgetUtil.java
+++ b/client/src/com/vaadin/client/WidgetUtil.java
@@ -1465,7 +1465,7 @@ public class WidgetUtil {
* The value is determined using computed style when available and
* calculated otherwise.
*
- * @since
+ * @since 7.5.0
* @param element
* the element to measure
* @return the top border thickness
@@ -1480,7 +1480,7 @@ public class WidgetUtil {
* The value is determined using computed style when available and
* calculated otherwise.
*
- * @since
+ * @since 7.5.0
* @param element
* the element to measure
* @return the bottom border thickness
@@ -1496,7 +1496,7 @@ public class WidgetUtil {
* The value is determined using computed style when available and
* calculated otherwise.
*
- * @since
+ * @since 7.5.0
* @param element
* the element to measure
* @return the top and bottom border thickness
@@ -1512,7 +1512,7 @@ public class WidgetUtil {
* The value is determined using computed style when available and
* calculated otherwise.
*
- * @since
+ * @since 7.5.0
* @param element
* the element to measure
* @return the left border thickness
@@ -1527,7 +1527,7 @@ public class WidgetUtil {
* The value is determined using computed style when available and
* calculated otherwise.
*
- * @since
+ * @since 7.5.0
* @param element
* the element to measure
* @return the right border thickness
@@ -1542,7 +1542,7 @@ public class WidgetUtil {
* The value is determined using computed style when available and
* calculated otherwise.
*
- * @since
+ * @since 7.5.0
* @param element
* the element to measure
* @return the top border thickness
diff --git a/client/src/com/vaadin/client/ui/dd/DragAndDropHandler.java b/client/src/com/vaadin/client/ui/dd/DragAndDropHandler.java
index 61fdd2850e..e2b51fb72d 100644
--- a/client/src/com/vaadin/client/ui/dd/DragAndDropHandler.java
+++ b/client/src/com/vaadin/client/ui/dd/DragAndDropHandler.java
@@ -33,7 +33,7 @@ import com.vaadin.client.widgets.Grid;
* The showing of the dragged element, drag hints and reacting to drop/cancel is
* delegated to {@link DragAndDropCallback} implementation.
*
- * @since
+ * @since 7.5.0
* @author Vaadin Ltd
*/
public class DragAndDropHandler {
diff --git a/client/src/com/vaadin/client/widgets/Escalator.java b/client/src/com/vaadin/client/widgets/Escalator.java
index a8797123f6..7c18df3c7d 100644
--- a/client/src/com/vaadin/client/widgets/Escalator.java
+++ b/client/src/com/vaadin/client/widgets/Escalator.java
@@ -6130,7 +6130,7 @@ public class Escalator extends Widget implements RequiresResize,
* visible and there is at least {@literal padding} pixesl to the given
* scroll destination.
*
- * @since
+ * @since 7.5.0
* @param spacerIndex
* the row index of the spacer to scroll to
* @param destination
@@ -6158,7 +6158,7 @@ public class Escalator extends Widget implements RequiresResize,
* If a spacer is not open at that index, this method behaves like
* {@link #scrollToRow(int, ScrollDestination, int)}
*
- * @since
+ * @since 7.5.0
* @param rowIndex
* the index of the logical row to scroll to. -1 takes the
* topmost spacer into account as well.
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java
index 773c7ac6a0..c20bdb0bd4 100644
--- a/client/src/com/vaadin/client/widgets/Grid.java
+++ b/client/src/com/vaadin/client/widgets/Grid.java
@@ -4319,7 +4319,7 @@ public class Grid<T> extends ResizeComposite implements
* Defaults to <code>null</code>, when will use whatever is set with
* {@link #setHeaderCaption(String)}.
*
- * @since
+ * @since 7.5.0
* @param hidingToggleCaption
* the caption for the hiding toggle for this column
*/
@@ -4333,7 +4333,7 @@ public class Grid<T> extends ResizeComposite implements
/**
* Gets the hiding toggle caption for this column.
*
- * @since
+ * @since 7.5.0
* @see #setHidingToggleCaption(String)
* @return the hiding toggle's caption for this column
*/
diff --git a/server/src/com/vaadin/server/GenericFontIcon.java b/server/src/com/vaadin/server/GenericFontIcon.java
index ba61390fb0..5018d186f7 100644
--- a/server/src/com/vaadin/server/GenericFontIcon.java
+++ b/server/src/com/vaadin/server/GenericFontIcon.java
@@ -18,7 +18,7 @@ package com.vaadin.server;
/**
* A generic implementation of {@link FontIcon} interface
*
- * @since
+ * @since 7.5.0
* @author Vaadin Ltd
*/
@SuppressWarnings("serial")
@@ -141,4 +141,4 @@ public class GenericFontIcon implements FontIcon {
}
return true;
}
-} \ No newline at end of file
+}
diff --git a/server/src/com/vaadin/server/VaadinServlet.java b/server/src/com/vaadin/server/VaadinServlet.java
index 999f5f27f5..053349a635 100644
--- a/server/src/com/vaadin/server/VaadinServlet.java
+++ b/server/src/com/vaadin/server/VaadinServlet.java
@@ -923,7 +923,7 @@ public class VaadinServlet extends HttpServlet implements Constants {
* request indicates that the client accepts gzip compressed responses and
* the filename extension of the requested resource is .js, .css, or .html.
*
- * @since
+ * @since 7.5.0
*
* @param request
* the request for the resource
diff --git a/server/src/com/vaadin/server/communication/JSR356WebsocketInitializer.java b/server/src/com/vaadin/server/communication/JSR356WebsocketInitializer.java
index fd61f6180f..f36d403dd5 100644
--- a/server/src/com/vaadin/server/communication/JSR356WebsocketInitializer.java
+++ b/server/src/com/vaadin/server/communication/JSR356WebsocketInitializer.java
@@ -44,7 +44,7 @@ import com.vaadin.server.VaadinServlet;
* older servers (unless added to web.xml), but these servers do not support JSR
* 356 websockets either.
*
- * @since
+ * @since 7.5.0
* @author Vaadin Ltd
*/
@WebListener
diff --git a/server/src/com/vaadin/server/communication/PushAtmosphereHandler.java b/server/src/com/vaadin/server/communication/PushAtmosphereHandler.java
index 0e94eaa75f..50279a1a74 100644
--- a/server/src/com/vaadin/server/communication/PushAtmosphereHandler.java
+++ b/server/src/com/vaadin/server/communication/PushAtmosphereHandler.java
@@ -30,7 +30,7 @@ import org.atmosphere.handler.AbstractReflectorAtmosphereHandler;
* Handles Atmosphere requests and forwards them to logical methods in
* {@link PushHandler}
*
- * @since
+ * @since 7.5.0
* @author Vaadin Ltd
*/
public class PushAtmosphereHandler extends AbstractReflectorAtmosphereHandler
diff --git a/server/src/com/vaadin/server/communication/PushHandler.java b/server/src/com/vaadin/server/communication/PushHandler.java
index 35bc3f2e55..01077c3f86 100644
--- a/server/src/com/vaadin/server/communication/PushHandler.java
+++ b/server/src/com/vaadin/server/communication/PushHandler.java
@@ -473,7 +473,7 @@ public class PushHandler {
/**
* Called when a new push connection is requested to be opened by the client
*
- * @since
+ * @since 7.5.0
* @param resource
* The related atmosphere resources
*/
@@ -484,7 +484,7 @@ public class PushHandler {
/**
* Called when a message is received through the push connection
*
- * @since
+ * @since 7.5.0
* @param resource
* The related atmosphere resources
*/
diff --git a/server/src/com/vaadin/server/communication/PushRequestHandler.java b/server/src/com/vaadin/server/communication/PushRequestHandler.java
index 0e3ec300b4..9e25f1d8ff 100644
--- a/server/src/com/vaadin/server/communication/PushRequestHandler.java
+++ b/server/src/com/vaadin/server/communication/PushRequestHandler.java
@@ -138,7 +138,7 @@ public class PushRequestHandler implements RequestHandler,
/**
* Initializes Atmosphere for the given ServletConfiguration
*
- * @since
+ * @since 7.5.0
* @param vaadinServletConfig
* The servlet configuration for the servlet which should have
* Atmosphere support
diff --git a/server/src/com/vaadin/ui/AbstractColorPicker.java b/server/src/com/vaadin/ui/AbstractColorPicker.java
index 3212d1b23f..4ce4e46d6a 100644
--- a/server/src/com/vaadin/ui/AbstractColorPicker.java
+++ b/server/src/com/vaadin/ui/AbstractColorPicker.java
@@ -284,7 +284,7 @@ public abstract class AbstractColorPicker extends AbstractComponent implements
/**
* Gets the style for the popup window
*
- * @since
+ * @since 7.5.0
* @return popup window style
*/
public PopupStyle getPopupStyle() {
@@ -312,7 +312,7 @@ public abstract class AbstractColorPicker extends AbstractComponent implements
/**
* Gets the visibility of the RGB Tab
*
- * @since
+ * @since 7.5.0
* @return visibility of the RGB tab
*/
public boolean getRGBVisibility() {
@@ -339,7 +339,7 @@ public abstract class AbstractColorPicker extends AbstractComponent implements
/**
* Gets the visibility of the HSV Tab
*
- * @since
+ * @since 7.5.0
* @return visibility of the HSV tab
*/
public boolean getHSVVisibility() {
@@ -366,7 +366,7 @@ public abstract class AbstractColorPicker extends AbstractComponent implements
/**
* Gets the visibility of the Swatches Tab
*
- * @since
+ * @since 7.5.0
* @return visibility of the swatches tab
*/
public boolean getSwatchesVisibility() {
@@ -389,7 +389,7 @@ public abstract class AbstractColorPicker extends AbstractComponent implements
/**
* Gets the visibility of the Color History
*
- * @since
+ * @since 7.5.0
* @return visibility of color history
*/
public boolean getHistoryVisibility() {
@@ -412,7 +412,7 @@ public abstract class AbstractColorPicker extends AbstractComponent implements
/**
* Gets the visibility of CSS color code text field
*
- * @since
+ * @since 7.5.0
* @return visibility of css color code text field
*/
public boolean getTextfieldVisibility() {
diff --git a/server/src/com/vaadin/ui/AbstractComponent.java b/server/src/com/vaadin/ui/AbstractComponent.java
index 3ceb06b31e..fd8a72ee23 100644
--- a/server/src/com/vaadin/ui/AbstractComponent.java
+++ b/server/src/com/vaadin/ui/AbstractComponent.java
@@ -1027,7 +1027,7 @@ public abstract class AbstractComponent extends AbstractClientConnector
/**
* Toggles responsiveness of this component.
*
- * @since
+ * @since 7.5.0
* @param responsive
* boolean enables responsiveness, false disables
*/
@@ -1052,7 +1052,7 @@ public abstract class AbstractComponent extends AbstractClientConnector
/**
* Returns true if the component is responsive
*
- * @since
+ * @since 7.5.0
* @return true if the component is responsive
*/
public boolean isResponsive() {
diff --git a/server/src/com/vaadin/ui/AbstractSelect.java b/server/src/com/vaadin/ui/AbstractSelect.java
index 4ab2767380..498ae2de0a 100644
--- a/server/src/com/vaadin/ui/AbstractSelect.java
+++ b/server/src/com/vaadin/ui/AbstractSelect.java
@@ -2217,7 +2217,7 @@ public abstract class AbstractSelect extends AbstractField<Object> implements
* Hierarchical select components should override this method to recursively
* recursively read any child items as well.
*
- * @since
+ * @since 7.5.0
* @param child
* a child element representing the item
* @param selected
@@ -2276,7 +2276,7 @@ public abstract class AbstractSelect extends AbstractField<Object> implements
* Writes the data source items to a design. Hierarchical select components
* should override this method to only write the root items.
*
- * @since
+ * @since 7.5.0
* @param design
* the element into which to insert the items
* @param context
@@ -2292,7 +2292,7 @@ public abstract class AbstractSelect extends AbstractField<Object> implements
* Writes a data source Item to a design. Hierarchical select components
* should override this method to recursively write any child items as well.
*
- * @since
+ * @since 7.5.0
* @param design
* the element into which to insert the item
* @param itemId
@@ -2325,4 +2325,4 @@ public abstract class AbstractSelect extends AbstractField<Object> implements
return element;
}
-} \ No newline at end of file
+}
diff --git a/server/src/com/vaadin/ui/AbstractSplitPanel.java b/server/src/com/vaadin/ui/AbstractSplitPanel.java
index 8a7b9086c2..cae98fd71d 100644
--- a/server/src/com/vaadin/ui/AbstractSplitPanel.java
+++ b/server/src/com/vaadin/ui/AbstractSplitPanel.java
@@ -528,7 +528,7 @@ public abstract class AbstractSplitPanel extends AbstractComponentContainer {
* Interface for listening for {@link SplitPositionChangeEvent}s fired by a
* SplitPanel.
*
- * @since
+ * @since 7.5.0
*/
public interface SplitPositionChangeListener extends ConnectorEventListener {
@@ -548,7 +548,7 @@ public abstract class AbstractSplitPanel extends AbstractComponentContainer {
/**
* Event that indicates a change in SplitPanel's splitter position.
*
- * @since
+ * @since 7.5.0
*/
public static class SplitPositionChangeEvent extends Component.Event {
@@ -603,7 +603,7 @@ public abstract class AbstractSplitPanel extends AbstractComponentContainer {
/**
* Register a listener to handle {@link SplitPositionChangeEvent}s.
*
- * @since
+ * @since 7.5.0
* @param listener
* {@link SplitPositionChangeListener} to be registered.
*/
@@ -616,7 +616,7 @@ public abstract class AbstractSplitPanel extends AbstractComponentContainer {
/**
* Removes a {@link SplitPositionChangeListener}.
*
- * @since
+ * @since 7.5.0
* @param listener
* SplitPositionChangeListener to be removed.
*/
diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java
index 77a3d28ddf..075020b312 100644
--- a/server/src/com/vaadin/ui/Grid.java
+++ b/server/src/com/vaadin/ui/Grid.java
@@ -1631,7 +1631,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Writes the declarative design to the given table row element.
*
- * @since
+ * @since 7.5.0
* @param trElement
* Element to write design to
* @param designContext
@@ -1665,7 +1665,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Reads the declarative design from the given table row element.
*
- * @since
+ * @since 7.5.0
* @param trElement
* Element to read design from
* @param designContext
@@ -1867,7 +1867,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Writes the declarative design to the given table cell element.
*
- * @since
+ * @since 7.5.0
* @param cellElement
* Element to write design to
* @param designContext
@@ -1894,7 +1894,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Reads the declarative design from the given table cell element.
*
- * @since
+ * @since 7.5.0
* @param cellElement
* Element to read design from
* @param designContext
@@ -2147,7 +2147,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Writes the declarative design to the given table section element.
*
- * @since
+ * @since 7.5.0
* @param tableSectionElement
* Element to write design to
* @param designContext
@@ -2164,7 +2164,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Writes the declarative design from the given table section element.
*
- * @since
+ * @since 7.5.0
* @param tableSectionElement
* Element to read design from
* @param designContext
@@ -2526,7 +2526,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Gets the caption of the hiding toggle for this column.
*
- * @since
+ * @since 7.5.0
* @see #setHidingToggleCaption(String)
* @return the caption for the hiding toggle for this column
* @throws IllegalStateException
@@ -2548,7 +2548,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
* <em>NOTE:</em> setting this to <code>null</code> or empty string
* might cause the hiding toggle to not render correctly.
*
- * @since
+ * @since 7.5.0
* @param hidingToggleCaption
* the text to show in the column hiding toggle
* @return the column itself
@@ -3178,7 +3178,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/*
* Writes the design attributes for this column into given element.
*
- * @since
+ * @since 7.5.0
*
* @param design Element to write attributes into
*
@@ -3215,7 +3215,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Reads the design attributes for this column from given element.
*
- * @since
+ * @since 7.5.0
* @param design
* Element to read attributes from
* @param designContext
diff --git a/server/src/com/vaadin/ui/Tree.java b/server/src/com/vaadin/ui/Tree.java
index 6f5ec96f63..48f4e54831 100644
--- a/server/src/com/vaadin/ui/Tree.java
+++ b/server/src/com/vaadin/ui/Tree.java
@@ -1800,7 +1800,7 @@ public class Tree extends AbstractSelect implements Container.Hierarchical,
* Reads an Item from a design and inserts it into the data source.
* Recursively handles any children of the item as well.
*
- * @since
+ * @since 7.5.0
* @param node
* an element representing the item (tree node).
* @param selected
@@ -1844,7 +1844,7 @@ public class Tree extends AbstractSelect implements Container.Hierarchical,
/**
* Recursively writes the root items and their children to a design.
*
- * @since
+ * @since 7.5.0
* @param design
* the element into which to insert the items
* @param context
@@ -1860,7 +1860,7 @@ public class Tree extends AbstractSelect implements Container.Hierarchical,
/**
* Recursively writes a data source Item and its children to a design.
*
- * @since
+ * @since 7.5.0
* @param design
* the element into which to insert the item
* @param itemId
diff --git a/server/src/com/vaadin/ui/declarative/Design.java b/server/src/com/vaadin/ui/declarative/Design.java
index 6634e5248a..a3589de5e2 100644
--- a/server/src/com/vaadin/ui/declarative/Design.java
+++ b/server/src/com/vaadin/ui/declarative/Design.java
@@ -94,7 +94,7 @@ public class Design implements Serializable {
* Use {@link Design#setComponentMapper(ComponentMapper)} to configure
* Vaadin to use a custom component mapper.
*
- * @since
+ * @since 7.5.0
* @author Vaadin Ltd
*/
public interface ComponentMapper extends Serializable {
@@ -182,7 +182,7 @@ public class Design implements Serializable {
/**
* Default implementation of {@link ComponentMapper},
*
- * @since
+ * @since 7.5.0
*/
public static class DefaultComponentMapper implements ComponentMapper {
@@ -317,7 +317,7 @@ public class Design implements Serializable {
* @param componentMapper
* the component mapper to set; not <code>null</code>
*
- * @since
+ * @since 7.5.0
*/
public static void setComponentMapper(ComponentMapper componentMapper) {
if (componentMapper == null) {
@@ -334,7 +334,7 @@ public class Design implements Serializable {
*
* @return the component mapper
*
- * @since
+ * @since 7.5.0
*/
public static ComponentMapper getComponentMapper() {
return componentMapper;
diff --git a/server/src/com/vaadin/ui/declarative/DesignContext.java b/server/src/com/vaadin/ui/declarative/DesignContext.java
index 657e15896c..d6cb970ce8 100644
--- a/server/src/com/vaadin/ui/declarative/DesignContext.java
+++ b/server/src/com/vaadin/ui/declarative/DesignContext.java
@@ -264,7 +264,7 @@ public class DesignContext implements Serializable {
* @see #getPackagePrefixes()
* @see #getPackagePrefix(String)
* @see #getPackage(String)
- * @since
+ * @since 7.5.0
*/
public void addPackagePrefix(String prefix, String packageName) {
twoWayMap(prefix, packageName, prefixToPackage, packageToPrefix);
@@ -277,7 +277,7 @@ public class DesignContext implements Serializable {
* @see #addPackagePrefix(String, String)
* @see #getPackagePrefixes()
*
- * @since
+ * @since 7.5.0
* @param packageName
* the package name to get a prefix for
* @return the prefix for the package, or <code>null</code> if no prefix is
@@ -291,7 +291,7 @@ public class DesignContext implements Serializable {
* Gets all registered package prefixes.
*
*
- * @since
+ * @since 7.5.0
* @see #getPackage(String)
* @return a collection of package prefixes
*/
@@ -303,7 +303,7 @@ public class DesignContext implements Serializable {
* Gets the package corresponding to the give prefix, or <code>null</code>
* no package has been registered for the prefix
*
- * @since
+ * @since 7.5.0
* @see #addPackagePrefix(String, String)
* @param prefix
* the prefix to find a package for
@@ -684,7 +684,7 @@ public class DesignContext implements Serializable {
* connected to a back end system and that the data should thus not be
* written.
*
- * @since
+ * @since 7.5.0
* @see #setShouldWriteDataDelegate(ShouldWriteDataDelegate)
* @param component
* the component to check
@@ -699,7 +699,7 @@ public class DesignContext implements Serializable {
* Sets the delegate that determines whether the container data of a
* component should be written out.
*
- * @since
+ * @since 7.5.0
* @see #shouldWriteChildren(Component, Component)
* @see #getShouldWriteDataDelegate()
* @param shouldWriteDataDelegate
@@ -719,7 +719,7 @@ public class DesignContext implements Serializable {
* Gets the delegate that determines whether the container data of a
* component should be written out.
*
- * @since
+ * @since 7.5.0
* @see #setShouldWriteDataDelegate(ShouldWriteDataDelegate)
* @see #shouldWriteChildren(Component, Component)
* @return the shouldWriteDataDelegate the currently use delegate
diff --git a/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java b/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java
index 29a78e1db6..9cb1f1c605 100644
--- a/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java
+++ b/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java
@@ -25,7 +25,7 @@ import com.vaadin.ui.Component;
*
* @see DesignContext#shouldWriteData(Component)
*
- * @since
+ * @since 7.5.0
* @author Vaadin Ltd
*/
public interface ShouldWriteDataDelegate extends Serializable {
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java
index fa6aa33fc0..37bf5c8a00 100644
--- a/shared/src/com/vaadin/shared/ApplicationConstants.java
+++ b/shared/src/com/vaadin/shared/ApplicationConstants.java
@@ -43,7 +43,7 @@ public class ApplicationConstants implements Serializable {
* Prefix used for theme resource URLs
*
* @see com.vaadin.server.ThemeResource
- * @since
+ * @since 7.5.0
*/
public static final String THEME_PROTOCOL_PREFIX = "theme://";
diff --git a/shared/src/com/vaadin/shared/ui/MarginInfo.java b/shared/src/com/vaadin/shared/ui/MarginInfo.java
index 18c625dcc2..d15fa0a281 100644
--- a/shared/src/com/vaadin/shared/ui/MarginInfo.java
+++ b/shared/src/com/vaadin/shared/ui/MarginInfo.java
@@ -21,7 +21,6 @@ import java.io.Serializable;
/**
* Describes the margin settings for each edge of a Component.
*
- * @since
* @author Vaadin Ltd
*/
public class MarginInfo implements Serializable {