summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2015-10-27 12:44:50 +0200
committerHenri Sara <hesara@vaadin.com>2015-10-27 12:44:50 +0200
commit521663c216bd979d5fd2e2734f1c70b64e8a72d4 (patch)
treec34511336ed1bf904ae005d7074513f1b08cae9c
parentf5e2275e70a42817c4786657c385f8213ec365ee (diff)
downloadvaadin-framework-521663c216bd979d5fd2e2734f1c70b64e8a72d4.tar.gz
vaadin-framework-521663c216bd979d5fd2e2734f1c70b64e8a72d4.zip
Update @since tags for 7.6
Change-Id: Ic0a9b69c535ec51ae29472844506efb61ec5f0a7
-rw-r--r--server/src/com/vaadin/navigator/Navigator.java4
-rw-r--r--shared/src/com/vaadin/shared/ui/audio/AudioState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/combobox/ComboBoxState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/optiongroup/OptionGroupState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/orderedlayout/FormLayoutState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/select/AbstractSelectState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/table/TableState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/textarea/RichTextAreaState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/tree/TreeState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/twincolselect/TwinColSelectState.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/upload/UploadState.java2
11 files changed, 14 insertions, 10 deletions
diff --git a/server/src/com/vaadin/navigator/Navigator.java b/server/src/com/vaadin/navigator/Navigator.java
index b9f270c0d8..fa587a2eaa 100644
--- a/server/src/com/vaadin/navigator/Navigator.java
+++ b/server/src/com/vaadin/navigator/Navigator.java
@@ -472,6 +472,8 @@ public class Navigator implements Serializable {
* Creates a navigator. This method is for use by dependency injection
* frameworks etc. and must be followed by a call to
* {@link #init(UI, NavigationStateManager, ViewDisplay)} before use.
+ *
+ * @since 7.6
*/
protected Navigator() {
}
@@ -488,6 +490,7 @@ public class Navigator implements Serializable {
* be explicitly called to ensure the current view matches the navigation
* state.
*
+ * @since 7.6
* @param ui
* The UI to which this Navigator is attached.
* @param stateManager
@@ -754,6 +757,7 @@ public class Navigator implements Serializable {
/**
* Return the currently active view.
*
+ * @since 7.6
* @return current view
*/
public View getCurrentView() {
diff --git a/shared/src/com/vaadin/shared/ui/audio/AudioState.java b/shared/src/com/vaadin/shared/ui/audio/AudioState.java
index 1fedc6ab53..f0b4501e82 100644
--- a/shared/src/com/vaadin/shared/ui/audio/AudioState.java
+++ b/shared/src/com/vaadin/shared/ui/audio/AudioState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.ui.AbstractMediaState;
/**
* Shared state for the Audio component.
*
- * @since
+ * @since 7.6
*/
public class AudioState extends AbstractMediaState {
diff --git a/shared/src/com/vaadin/shared/ui/combobox/ComboBoxState.java b/shared/src/com/vaadin/shared/ui/combobox/ComboBoxState.java
index 69b8a47ba6..46e24aa266 100644
--- a/shared/src/com/vaadin/shared/ui/combobox/ComboBoxState.java
+++ b/shared/src/com/vaadin/shared/ui/combobox/ComboBoxState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.ui.select.AbstractSelectState;
/**
* Shared state for the ComboBox component.
*
- * @since
+ * @since 7.0
*/
public class ComboBoxState extends AbstractSelectState {
{
diff --git a/shared/src/com/vaadin/shared/ui/optiongroup/OptionGroupState.java b/shared/src/com/vaadin/shared/ui/optiongroup/OptionGroupState.java
index 7ad5045f94..f1676e0dd8 100644
--- a/shared/src/com/vaadin/shared/ui/optiongroup/OptionGroupState.java
+++ b/shared/src/com/vaadin/shared/ui/optiongroup/OptionGroupState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.ui.select.AbstractSelectState;
/**
* Shared state for the OptionGroup component.
*
- * @since
+ * @since 7.0
*/
public class OptionGroupState extends AbstractSelectState {
{
diff --git a/shared/src/com/vaadin/shared/ui/orderedlayout/FormLayoutState.java b/shared/src/com/vaadin/shared/ui/orderedlayout/FormLayoutState.java
index 0f75ec0501..b8134d2cee 100644
--- a/shared/src/com/vaadin/shared/ui/orderedlayout/FormLayoutState.java
+++ b/shared/src/com/vaadin/shared/ui/orderedlayout/FormLayoutState.java
@@ -18,7 +18,7 @@ package com.vaadin.shared.ui.orderedlayout;
/**
* Shared state for the FormLayout component.
*
- * @since
+ * @since 7.6
*/
public class FormLayoutState extends AbstractOrderedLayoutState {
diff --git a/shared/src/com/vaadin/shared/ui/select/AbstractSelectState.java b/shared/src/com/vaadin/shared/ui/select/AbstractSelectState.java
index 9dc21ced1b..8ea306daf6 100644
--- a/shared/src/com/vaadin/shared/ui/select/AbstractSelectState.java
+++ b/shared/src/com/vaadin/shared/ui/select/AbstractSelectState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.AbstractFieldState;
/**
* Shared state for the AbstractSelect component.
*
- * @since
+ * @since 7.6
*/
public class AbstractSelectState extends AbstractFieldState {
diff --git a/shared/src/com/vaadin/shared/ui/table/TableState.java b/shared/src/com/vaadin/shared/ui/table/TableState.java
index 19a775323c..7c60a78f57 100644
--- a/shared/src/com/vaadin/shared/ui/table/TableState.java
+++ b/shared/src/com/vaadin/shared/ui/table/TableState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.ui.select.AbstractSelectState;
/**
* Shared state for the Table component.
*
- * @since
+ * @since 7.0
*/
public class TableState extends AbstractSelectState {
{
diff --git a/shared/src/com/vaadin/shared/ui/textarea/RichTextAreaState.java b/shared/src/com/vaadin/shared/ui/textarea/RichTextAreaState.java
index b4679d5a9d..51c386ddfc 100644
--- a/shared/src/com/vaadin/shared/ui/textarea/RichTextAreaState.java
+++ b/shared/src/com/vaadin/shared/ui/textarea/RichTextAreaState.java
@@ -21,7 +21,7 @@ import com.vaadin.shared.ui.textfield.AbstractTextFieldState;
*
* Shared state for the RichTextArea component.
*
- * @since
+ * @since 7.6
*/
public class RichTextAreaState extends AbstractTextFieldState {
diff --git a/shared/src/com/vaadin/shared/ui/tree/TreeState.java b/shared/src/com/vaadin/shared/ui/tree/TreeState.java
index 14e544120d..19a70e89f2 100644
--- a/shared/src/com/vaadin/shared/ui/tree/TreeState.java
+++ b/shared/src/com/vaadin/shared/ui/tree/TreeState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.ui.select.AbstractSelectState;
/**
* Shared state for the Table component.
*
- * @since
+ * @since 7.0
*/
public class TreeState extends AbstractSelectState {
{
diff --git a/shared/src/com/vaadin/shared/ui/twincolselect/TwinColSelectState.java b/shared/src/com/vaadin/shared/ui/twincolselect/TwinColSelectState.java
index 6f0a14f17f..12505c4231 100644
--- a/shared/src/com/vaadin/shared/ui/twincolselect/TwinColSelectState.java
+++ b/shared/src/com/vaadin/shared/ui/twincolselect/TwinColSelectState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.ui.select.AbstractSelectState;
/**
* Shared state for the TwinColSelect component.
*
- * @since
+ * @since 7.0
*/
public class TwinColSelectState extends AbstractSelectState {
{
diff --git a/shared/src/com/vaadin/shared/ui/upload/UploadState.java b/shared/src/com/vaadin/shared/ui/upload/UploadState.java
index 79ed88e5b3..f91d67631c 100644
--- a/shared/src/com/vaadin/shared/ui/upload/UploadState.java
+++ b/shared/src/com/vaadin/shared/ui/upload/UploadState.java
@@ -20,7 +20,7 @@ import com.vaadin.shared.AbstractComponentState;
/**
* Shared state for the Upload component.
*
- * @since
+ * @since 7.6
*/
public class UploadState extends AbstractComponentState {