diff options
author | Henri Sara <hesara@vaadin.com> | 2015-10-07 14:39:00 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-10-07 14:18:54 +0000 |
commit | ddf4e617b2cc12740fdb4a15c3d392743591a671 (patch) | |
tree | 77d4fb9b6716a9af45c521b0b66584945d923b29 | |
parent | d1e8d68248dd9ec97378fa9b909e29dde4358073 (diff) | |
download | vaadin-framework-ddf4e617b2cc12740fdb4a15c3d392743591a671.tar.gz vaadin-framework-ddf4e617b2cc12740fdb4a15c3d392743591a671.zip |
Update/add @since tags in javadoc
Change-Id: Ifd93251fdc20b93ad276c551796557bb9026766a
31 files changed, 78 insertions, 23 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConfiguration.java b/client/src/com/vaadin/client/ApplicationConfiguration.java index d20e0568cd..f14802c931 100644 --- a/client/src/com/vaadin/client/ApplicationConfiguration.java +++ b/client/src/com/vaadin/client/ApplicationConfiguration.java @@ -603,7 +603,7 @@ public class ApplicationConfiguration implements EntryPoint { } /** - * + * @since 7.6 * @param c */ public static void runWhenDependenciesLoaded(Command c) { diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java index 3efb13b632..ce55c13ce5 100644 --- a/client/src/com/vaadin/client/ApplicationConnection.java +++ b/client/src/com/vaadin/client/ApplicationConnection.java @@ -42,6 +42,7 @@ import com.google.gwt.user.client.Timer; import com.google.gwt.user.client.ui.HasWidgets; import com.google.gwt.user.client.ui.Widget; import com.vaadin.client.ApplicationConfiguration.ErrorMessage; +import com.vaadin.client.ApplicationConnection.ApplicationStoppedEvent; import com.vaadin.client.ResourceLoader.ResourceLoadEvent; import com.vaadin.client.ResourceLoader.ResourceLoadListener; import com.vaadin.client.communication.ConnectionStateHandler; @@ -1202,6 +1203,7 @@ public class ApplicationConnection implements HasHandlers { * Sets a resource that has been pre-loaded via UIDL, such as custom * layouts. * + * @since 7.6 * @param name * identifier of the resource to Set * @param resource @@ -1578,6 +1580,7 @@ public class ApplicationConnection implements HasHandlers { /** * Gets the server RPC queue for this application * + * @since 7.6 * @return the server RPC queue */ public ServerRpcQueue getServerRpcQueue() { @@ -1587,6 +1590,7 @@ public class ApplicationConnection implements HasHandlers { /** * Gets the communication error handler for this application * + * @since 7.6 * @return the server RPC queue */ public ConnectionStateHandler getConnectionStateHandler() { @@ -1596,6 +1600,7 @@ public class ApplicationConnection implements HasHandlers { /** * Gets the (server to client) message handler for this application * + * @since 7.6 * @return the message handler */ public MessageHandler getMessageHandler() { @@ -1605,6 +1610,7 @@ public class ApplicationConnection implements HasHandlers { /** * Gets the server rpc manager for this application * + * @since 7.6 * @return the server rpc manager */ public RpcManager getRpcManager() { @@ -1614,6 +1620,7 @@ public class ApplicationConnection implements HasHandlers { /** * Gets the (client to server) message sender for this application * + * @since 7.6 * @return the message sender */ public MessageSender getMessageSender() { @@ -1621,6 +1628,7 @@ public class ApplicationConnection implements HasHandlers { } /** + * @since 7.6 * @return the widget set */ public WidgetSet getWidgetSet() { diff --git a/client/src/com/vaadin/client/ComputedStyle.java b/client/src/com/vaadin/client/ComputedStyle.java index b8795ac8ce..65a6e69019 100644 --- a/client/src/com/vaadin/client/ComputedStyle.java +++ b/client/src/com/vaadin/client/ComputedStyle.java @@ -151,6 +151,7 @@ public class ComputedStyle { * * Returns NaN if the property cannot be converted to a double * + * @since 7.5.1 * @param name * the property to retrieve * @return the double value of the property diff --git a/client/src/com/vaadin/client/LayoutManager.java b/client/src/com/vaadin/client/LayoutManager.java index 81d0364598..d39e604aaf 100644 --- a/client/src/com/vaadin/client/LayoutManager.java +++ b/client/src/com/vaadin/client/LayoutManager.java @@ -990,6 +990,7 @@ public class LayoutManager { * -1 is returned if the element has not been measured. If 0 is returned, it * might indicate that the element is not attached to the DOM. * + * @since 7.5.1 * @param element * the element to get the measured size for * @return the measured outer height (including margins, paddings and @@ -1017,6 +1018,7 @@ public class LayoutManager { * The value returned by this method is always rounded up. To get the exact * outer width, use {@link #getOuterWidthDouble(Element)} * + * @since 7.5.1 * @param element * the element to get the measured size for * @return the measured outer width (including margins, paddings and @@ -1094,6 +1096,7 @@ public class LayoutManager { * -1 is returned if the element has not been measured. If 0 is returned, it * might indicate that the element is not attached to the DOM. * + * @since 7.5.1 * @param element * the element to get the measured size for * @return the measured inner height (excluding margins, paddings and @@ -1146,6 +1149,7 @@ public class LayoutManager { * -1 is returned if the element has not been measured. If 0 is returned, it * might indicate that the element is not attached to the DOM. * + * @since 7.5.1 * @param element * the element to get the measured size for * @return the measured inner width (excluding margins, paddings and diff --git a/client/src/com/vaadin/client/Profiler.java b/client/src/com/vaadin/client/Profiler.java index f3b449ae36..3923b66218 100644 --- a/client/src/com/vaadin/client/Profiler.java +++ b/client/src/com/vaadin/client/Profiler.java @@ -390,6 +390,8 @@ public class Profiler { * Returns time relative to the particular page load time. The value should * not be used directly but rather difference between two values returned by * this method should be used to compare measurements. + * + * @since 7.6 */ public static double getRelativeTimeMillis() { return RELATIVE_TIME_SUPPLIER.getRelativeTime(); diff --git a/client/src/com/vaadin/client/Util.java b/client/src/com/vaadin/client/Util.java index 635efad796..ab7d344877 100644 --- a/client/src/com/vaadin/client/Util.java +++ b/client/src/com/vaadin/client/Util.java @@ -1178,6 +1178,8 @@ public class Util { /** * Round {@code num} up to {@code exp} decimal positions. + * + * @since 7.6 */ public static native double round(double num, int exp) /*-{ diff --git a/client/src/com/vaadin/client/WidgetUtil.java b/client/src/com/vaadin/client/WidgetUtil.java index 188b433558..e9ec163612 100644 --- a/client/src/com/vaadin/client/WidgetUtil.java +++ b/client/src/com/vaadin/client/WidgetUtil.java @@ -562,6 +562,7 @@ public class WidgetUtil { * Gets the border-box width for the given element, i.e. element width + * border + padding. * + * @since 7.5.1 * @param element * The element to check * @return The border-box width for the element @@ -612,6 +613,7 @@ public class WidgetUtil { * Gets the border-box height for the given element, i.e. element height + * border + padding. * + * @since 7.5.1 * @param element * The element to check * @return The border-box height for the element diff --git a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java index 643adffe12..c0a1d92b1e 100644 --- a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java +++ b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java @@ -95,7 +95,7 @@ public abstract class AbstractComponentConnector extends AbstractConnector * overridden to provide extra information through an alternative RPC * interface. * - * @since + * @since 7.6 * @param event */ protected void sendContextClickEvent(ContextMenuEvent event) { diff --git a/client/src/com/vaadin/client/ui/VNotification.java b/client/src/com/vaadin/client/ui/VNotification.java index d5387b761a..1ff51df8d0 100644 --- a/client/src/com/vaadin/client/ui/VNotification.java +++ b/client/src/com/vaadin/client/ui/VNotification.java @@ -606,6 +606,7 @@ public class VNotification extends VOverlay { * If both message and caption are null, redirects the user to the url * immediately * + * @since 7.5.1 * @param connection * A reference to the ApplicationConnection * @param caption diff --git a/client/src/com/vaadin/client/ui/orderedlayout/Slot.java b/client/src/com/vaadin/client/ui/orderedlayout/Slot.java index 8d86d236a6..cc4b6a0662 100644 --- a/client/src/com/vaadin/client/ui/orderedlayout/Slot.java +++ b/client/src/com/vaadin/client/ui/orderedlayout/Slot.java @@ -93,6 +93,8 @@ public class Slot extends SimplePanel { * * When using this constructor, the layout and widget must be set before any * other operations are performed on the slot. + * + * @since 7.6 */ public Slot() { setStyleName(SLOT_CLASSNAME); diff --git a/server/src/com/vaadin/event/ContextClickEvent.java b/server/src/com/vaadin/event/ContextClickEvent.java index 88b46d938b..5b15634105 100644 --- a/server/src/com/vaadin/event/ContextClickEvent.java +++ b/server/src/com/vaadin/event/ContextClickEvent.java @@ -27,7 +27,7 @@ import com.vaadin.util.ReflectTools; * Context click event fired by a {@link Component}. ContextClickEvent happens * when context click happens on the client-side inside the Component. * - * @since + * @since 7.6 * @author Vaadin Ltd */ public class ContextClickEvent extends ClickEvent { diff --git a/server/src/com/vaadin/server/VaadinSession.java b/server/src/com/vaadin/server/VaadinSession.java index dac4f40f5a..f5e400bb3a 100644 --- a/server/src/com/vaadin/server/VaadinSession.java +++ b/server/src/com/vaadin/server/VaadinSession.java @@ -781,7 +781,7 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable { * Checks if the current thread has exclusive access to this VaadinSession * * @return true if the thread has exclusive access, false otherwise - * @since + * @since 7.1 */ public boolean hasLock() { ReentrantLock l = ((ReentrantLock) getLockInstance()); @@ -793,7 +793,7 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable { * WrappedSession. * * @return true if this thread has exclusive access, false otherwise - * @since + * @since 7.6 */ protected static boolean hasLock(VaadinService service, WrappedSession session) { diff --git a/server/src/com/vaadin/server/WebBrowser.java b/server/src/com/vaadin/server/WebBrowser.java index 1205fece74..5b7d795793 100644 --- a/server/src/com/vaadin/server/WebBrowser.java +++ b/server/src/com/vaadin/server/WebBrowser.java @@ -128,6 +128,7 @@ public class WebBrowser implements Serializable { /** * Tests whether the user is using Edge. * + * @since 7.5.3 * @return true if the user is using Edge, false if the user is not using * Edge or if no information on the browser is present */ diff --git a/server/src/com/vaadin/server/WrappedPortletSession.java b/server/src/com/vaadin/server/WrappedPortletSession.java index a8eff75983..7960003358 100644 --- a/server/src/com/vaadin/server/WrappedPortletSession.java +++ b/server/src/com/vaadin/server/WrappedPortletSession.java @@ -73,7 +73,7 @@ public class WrappedPortletSession implements WrappedSession { * @see PortletSession#PORTLET_SCOPE * @see PortletSession#APPLICATION_SCOPE * - * @since + * @since 7.6 */ public Object getAttribute(String name, int scope) { return session.getAttribute(name, scope); @@ -113,7 +113,7 @@ public class WrappedPortletSession implements WrappedSession { * @see PortletSession#PORTLET_SCOPE * @see PortletSession#APPLICATION_SCOPE * - * @since + * @since 7.6 */ public void setAttribute(String name, Object value, int scope) { session.setAttribute(name, value, scope); @@ -144,7 +144,7 @@ public class WrappedPortletSession implements WrappedSession { * * @see PortletSession#getAttributeNames() * - * @since + * @since 7.6 */ public Set<String> getAttributeNames(int scope) { return WrappedHttpSession.enumerationToSet(session @@ -200,7 +200,7 @@ public class WrappedPortletSession implements WrappedSession { * @see PortletSession#PORTLET_SCOPE * @see PortletSession#APPLICATION_SCOPE * - * @since + * @since 7.6 */ public void removeAttribute(String name, int scope) { session.removeAttribute(name, scope); diff --git a/server/src/com/vaadin/server/communication/PushHandler.java b/server/src/com/vaadin/server/communication/PushHandler.java index b2fc096a85..483c0abc44 100644 --- a/server/src/com/vaadin/server/communication/PushHandler.java +++ b/server/src/com/vaadin/server/communication/PushHandler.java @@ -517,6 +517,7 @@ public class PushHandler { * timeout to a value smaller than the proxy timeout so that the server is * aware of a reconnect taking place. * + * @since 7.6 * @param suspendTimeout * the timeout to use for suspended AtmosphereResources */ @@ -527,6 +528,7 @@ public class PushHandler { /** * Gets the timeout used for suspend calls when using long polling. * + * @since 7.6 * @return the timeout to use for suspended AtmosphereResources */ public int getLongPollingSuspendTimeout() { diff --git a/server/src/com/vaadin/server/communication/ServerRpcHandler.java b/server/src/com/vaadin/server/communication/ServerRpcHandler.java index f3d4b163ff..593b1f544f 100644 --- a/server/src/com/vaadin/server/communication/ServerRpcHandler.java +++ b/server/src/com/vaadin/server/communication/ServerRpcHandler.java @@ -167,6 +167,7 @@ public class ServerRpcHandler implements Serializable { /** * Gets the id of the client to server message * + * @since 7.6 * @return the server message id */ public int getClientToServerId() { diff --git a/server/src/com/vaadin/ui/AbstractField.java b/server/src/com/vaadin/ui/AbstractField.java index 61f58157ea..e69322b1cc 100644 --- a/server/src/com/vaadin/ui/AbstractField.java +++ b/server/src/com/vaadin/ui/AbstractField.java @@ -471,7 +471,7 @@ public abstract class AbstractField<T> extends AbstractComponent implements /** * Sets the value of the field. * - * @since + * @since 7.5.7 * @param newFieldValue * the New value of the field. * @param repaintIsNotNeeded diff --git a/server/src/com/vaadin/ui/AbstractSelect.java b/server/src/com/vaadin/ui/AbstractSelect.java index 8fab8ec3a0..69eed32afb 100644 --- a/server/src/com/vaadin/ui/AbstractSelect.java +++ b/server/src/com/vaadin/ui/AbstractSelect.java @@ -699,6 +699,7 @@ public abstract class AbstractSelect extends AbstractField<Object> implements * multiselect mode all collections of id:s can be assigned. * </p> * + * @since 7.5.7 * @param newValue * the New selected item or collection of selected items. * @param repaintIsNotNeeded diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java index 06a3c16fd7..3907156265 100644 --- a/server/src/com/vaadin/ui/Grid.java +++ b/server/src/com/vaadin/ui/Grid.java @@ -390,7 +390,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, /** * ContextClickEvent for the Grid Component. * - * @since + * @since 7.6 */ public static class GridContextClickEvent extends ContextClickEvent { @@ -1801,6 +1801,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, /** * Abstract base class for Grid header and footer sections. * + * @since 7.6 * @param <ROWTYPE> * the type of the rows in the section */ @@ -3721,6 +3722,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * given converter and renderer. This method is public only for testing * purposes. * + * @since 7.6 * @param renderer * the renderer to use * @param converter diff --git a/server/src/com/vaadin/ui/PushConfiguration.java b/server/src/com/vaadin/ui/PushConfiguration.java index ef9fc0556e..6ef323cea8 100644 --- a/server/src/com/vaadin/ui/PushConfiguration.java +++ b/server/src/com/vaadin/ui/PushConfiguration.java @@ -145,7 +145,7 @@ public interface PushConfiguration extends Serializable { * This is only used when overriding the URL to use. Setting this to null * (the default) will use the default URL. * - * @since + * @since 7.6 * @param pushUrl * The push URL to use */ @@ -157,7 +157,7 @@ public interface PushConfiguration extends Serializable { * This is only used when overriding the URL to use. Returns null (the * default) when the default URL is used. * - * @since + * @since 7.6 * @return the URL to use for push requests, or null to use to default */ public String getPushUrl(); diff --git a/server/src/com/vaadin/ui/Table.java b/server/src/com/vaadin/ui/Table.java index 62aca78223..7f2a8e96e2 100644 --- a/server/src/com/vaadin/ui/Table.java +++ b/server/src/com/vaadin/ui/Table.java @@ -5776,7 +5776,9 @@ public class Table extends AbstractSelect implements Action.Container, } /** - * This event is fired when the collapse state of a column changes + * This event is fired when the collapse state of a column changes. + * + * @since 7.6 */ public static class ColumnCollapseEvent extends Component.Event { @@ -5810,6 +5812,8 @@ public class Table extends AbstractSelect implements Action.Container, /** * Interface for listening to column collapse events. + * + * @since 7.6 */ public interface ColumnCollapseListener extends Serializable { @@ -5867,6 +5871,8 @@ public class Table extends AbstractSelect implements Action.Container, * Adds a column collapse listener to the Table. A column collapse listener * is called when the collapsed state of a column changes. * + * @since 7.6 + * * @param listener * The listener to attach */ @@ -5877,7 +5883,8 @@ public class Table extends AbstractSelect implements Action.Container, /** * Removes a column reorder listener from the Table. - * + * + * @since 7.6 * @param listener * The listener to remove */ diff --git a/server/src/com/vaadin/ui/Tree.java b/server/src/com/vaadin/ui/Tree.java index 2c537e3a98..b0f41b382e 100644 --- a/server/src/com/vaadin/ui/Tree.java +++ b/server/src/com/vaadin/ui/Tree.java @@ -1946,7 +1946,7 @@ public class Tree extends AbstractSelect implements Container.Hierarchical, * <code>false</code>, the content is passed to the browser as plain text. * The default setting is <code>false</code> * - * @since + * @since 7.6 * @param htmlContentAllowed * <code>true</code> if the captions are used as html, * <code>false</code> if used as plain text @@ -1959,7 +1959,7 @@ public class Tree extends AbstractSelect implements Container.Hierarchical, /** * Checks whether captions are interpreted as html or plain text. * - * @since + * @since 7.6 * @return <code>true</code> if the captions are displayed as html, * <code>false</code> if displayed as plain text * @see #setHtmlContentAllowed(boolean) diff --git a/server/src/com/vaadin/ui/declarative/DesignFormatter.java b/server/src/com/vaadin/ui/declarative/DesignFormatter.java index 3ab0b9c12f..dbeb756dd8 100644 --- a/server/src/com/vaadin/ui/declarative/DesignFormatter.java +++ b/server/src/com/vaadin/ui/declarative/DesignFormatter.java @@ -403,7 +403,7 @@ public class DesignFormatter implements Serializable { * unencodes more characters than {@link #encodeForTextNode(String)} encodes * </p> * - * @since + * @since 7.6 * @param input * @return */ diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java index 55d2dae946..e5da716eb3 100644 --- a/shared/src/com/vaadin/shared/ApplicationConstants.java +++ b/shared/src/com/vaadin/shared/ApplicationConstants.java @@ -135,6 +135,8 @@ public class ApplicationConstants implements Serializable { /** * The name of the parameter used to transmit the id of the client to server * messages. + * + * @since 7.6 */ public static final String CLIENT_TO_SERVER_ID = "clientId"; @@ -151,6 +153,8 @@ public class ApplicationConstants implements Serializable { /** * The name of the parameter used for sending the widget set version to the * server + * + * @since 7.6 */ public static final String WIDGETSET_VERSION_ID = "wsver"; diff --git a/shared/src/com/vaadin/shared/ContextClickRpc.java b/shared/src/com/vaadin/shared/ContextClickRpc.java index 2dd045f426..2152de0863 100644 --- a/shared/src/com/vaadin/shared/ContextClickRpc.java +++ b/shared/src/com/vaadin/shared/ContextClickRpc.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * Client-to-server RPC interface for context click events * - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface ContextClickRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/VBrowserDetails.java b/shared/src/com/vaadin/shared/VBrowserDetails.java index d0de8ffb9f..a7426d2022 100644 --- a/shared/src/com/vaadin/shared/VBrowserDetails.java +++ b/shared/src/com/vaadin/shared/VBrowserDetails.java @@ -391,6 +391,7 @@ public class VBrowserDetails implements Serializable { /** * Tests if the browser is Edge. * + * @since 7.5.3 * @return true if it is Edge, false otherwise */ public boolean isEdge() { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java index ba4a677b5f..0f1af94456 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java @@ -28,6 +28,8 @@ public final class GridConstants implements Serializable { /** * Enum describing different sections of Grid. + * + * @since 7.6 */ public enum Section { HEADER, BODY, FOOTER diff --git a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java index 283c09e67b..b129cbf051 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java @@ -48,7 +48,7 @@ public interface GridServerRpc extends ServerRpc { /** * Informs the server that a context click has happened inside of Grid. * - * @since + * @since 7.6 * @param rowIndex * index of clicked row in Grid section * @param rowKey diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java index b0a3b9ffde..4ed878f1cb 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -105,6 +105,7 @@ public class GridState extends TabIndexState { /** * The key in which a row's description can be found * + * @since 7.6 * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String) */ public static final String JSONKEY_ROWDESCRIPTION = "rd"; @@ -112,6 +113,7 @@ public class GridState extends TabIndexState { /** * The key in which a cell's description can be found * + * @since 7.6 * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String) */ public static final String JSONKEY_CELLDESCRIPTION = "cd"; @@ -169,11 +171,19 @@ public class GridState extends TabIndexState { /** The enabled state of the editor interface */ public boolean editorEnabled = false; - /** Buffered editor mode */ + /** + * Buffered editor mode + * + * @since 7.6 + */ @DelegateToWidget public boolean editorBuffered = true; - /** Whether rows and/or cells have generated descriptions (tooltips) */ + /** + * Whether rows and/or cells have generated descriptions (tooltips) + * + * @since 7.6 + */ public boolean hasDescriptions; /** The caption for the save button in the editor */ diff --git a/shared/src/com/vaadin/shared/ui/table/TableConstants.java b/shared/src/com/vaadin/shared/ui/table/TableConstants.java index 9117729eb1..3a11e0a69a 100644 --- a/shared/src/com/vaadin/shared/ui/table/TableConstants.java +++ b/shared/src/com/vaadin/shared/ui/table/TableConstants.java @@ -20,6 +20,8 @@ import java.io.Serializable; public class TableConstants implements Serializable { /** * Enum describing different sections of Table. + * + * @since 7.6 */ public enum Section { HEADER, BODY, FOOTER diff --git a/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java b/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java index bfd6f544ef..13d494afb7 100644 --- a/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.ui.table.TableConstants.Section; /** * Client-to-server RPC interface for the Table component * - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface TableServerRpc extends ServerRpc { |