diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-09-28 11:49:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-28 11:49:02 +0300 |
commit | 131601de3693655387313e47e887f593c32fa625 (patch) | |
tree | 9d0478642985dd7c34ae3dd18e5b030659ab174c /shared/src | |
parent | 7065740d6d02954c3483e2f24db36ad1af45c62e (diff) | |
download | vaadin-framework-131601de3693655387313e47e887f593c32fa625.tar.gz vaadin-framework-131601de3693655387313e47e887f593c32fa625.zip |
Update empty since tags for 8.2 (#10107)
Diffstat (limited to 'shared/src')
4 files changed, 12 insertions, 12 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/ErrorLevel.java b/shared/src/main/java/com/vaadin/shared/ui/ErrorLevel.java index fe216fb878..95fdf0a0d9 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/ErrorLevel.java +++ b/shared/src/main/java/com/vaadin/shared/ui/ErrorLevel.java @@ -18,7 +18,7 @@ package com.vaadin.shared.ui; /** * Represents the error levels displayed on components. * @author Vaadin Ltd - * @since + * @since 8.2 */ public enum ErrorLevel { diff --git a/shared/src/main/java/com/vaadin/shared/ui/embedded/EmbeddedState.java b/shared/src/main/java/com/vaadin/shared/ui/embedded/EmbeddedState.java index 9476aabe46..55e6b916fd 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/embedded/EmbeddedState.java +++ b/shared/src/main/java/com/vaadin/shared/ui/embedded/EmbeddedState.java @@ -28,14 +28,14 @@ public class EmbeddedState extends AbstractEmbeddedState { /** * The object type. * - * @since + * @since 8.2 */ public int type; /** * The MIME-type of the object. * - * @since + * @since 8.2 */ public String mimeType; @@ -43,14 +43,14 @@ public class EmbeddedState extends AbstractEmbeddedState { * Specifies the base path used to resolve relative URIs specified by the * classid, data, and archive attributes. * - * @since + * @since 8.2 */ public String codebase; /** * The MIME-Type of the code. * - * @since + * @since 8.2 */ public String codetype; @@ -58,7 +58,7 @@ public class EmbeddedState extends AbstractEmbeddedState { * May be used to specify the location of an object's implementation via a * URI. * - * @since + * @since 8.2 */ public String classId; @@ -66,14 +66,14 @@ public class EmbeddedState extends AbstractEmbeddedState { * May be used to specify a space-separated list of URIs for archives * containing resources relevant to the object. * - * @since + * @since 8.2 */ public String archive; /** * The component's "alt-text". * - * @since + * @since 8.2 */ public String altText; @@ -81,7 +81,7 @@ public class EmbeddedState extends AbstractEmbeddedState { * Specifies a message that a user agent may render while loading the * object's implementation and data. * - * @since + * @since 8.2 */ public String standby; @@ -89,7 +89,7 @@ public class EmbeddedState extends AbstractEmbeddedState { * Object parameters. Parameters are optional information, and they are * passed to the instantiated object. * - * @since + * @since 8.2 */ public final Map<String, String> parameters = new HashMap<>(); diff --git a/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationServerRpc.java b/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationServerRpc.java index bf10a8c879..476b962dd5 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationServerRpc.java +++ b/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationServerRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.communication.ServerRpc; * * @author Vaadin Ltd. * - * @since + * @since 8.2 */ public interface NotificationServerRpc extends ServerRpc { diff --git a/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationState.java b/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationState.java index 19f923ee87..68e1b76c07 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationState.java +++ b/shared/src/main/java/com/vaadin/shared/ui/notification/NotificationState.java @@ -24,7 +24,7 @@ import com.vaadin.shared.communication.SharedState; * * @author Vaadin Ltd. * - * @since + * @since 8.2 */ public class NotificationState extends SharedState { |