summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-08-21 17:57:51 +0300
committerJohannes Dahlström <johannesd@vaadin.com>2012-08-21 17:57:51 +0300
commitb02028c90b9143ad16864ad371b4b9429e20573a (patch)
tree25462faa4276a282fbcb0b2f0b7c61b85c70a5ac
parent7bfa8f43d14d1823b27cfd84f925e23853fbf4c7 (diff)
downloadvaadin-framework-b02028c90b9143ad16864ad371b4b9429e20573a.tar.gz
vaadin-framework-b02028c90b9143ad16864ad371b4b9429e20573a.zip
Add "As of 7.0" to relevant @deprecated tags
-rw-r--r--server/src/com/vaadin/data/Buffered.java16
-rw-r--r--server/src/com/vaadin/ui/AbstractField.java8
-rw-r--r--server/src/com/vaadin/ui/DateField.java12
-rw-r--r--server/src/com/vaadin/ui/Table.java4
4 files changed, 20 insertions, 20 deletions
diff --git a/server/src/com/vaadin/data/Buffered.java b/server/src/com/vaadin/data/Buffered.java
index 5461d34fbd..2472524bbc 100644
--- a/server/src/com/vaadin/data/Buffered.java
+++ b/server/src/com/vaadin/data/Buffered.java
@@ -83,8 +83,8 @@ public interface Buffered extends Serializable {
*
* @return <code>true</code> if the object is in write-through mode,
* <code>false</code> if it's not.
- * @deprecated Use {@link #setBuffered(boolean)} instead. Note that
- * setReadThrough(true), setWriteThrough(true) equals
+ * @deprecated As of 7.0, use {@link #setBuffered(boolean)} instead. Note
+ * that setReadThrough(true), setWriteThrough(true) equals
* setBuffered(false)
*/
@Deprecated
@@ -105,8 +105,8 @@ public interface Buffered extends Serializable {
* If the implicit commit operation fails because of a
* validation error.
*
- * @deprecated Use {@link #setBuffered(boolean)} instead. Note that
- * setReadThrough(true), setWriteThrough(true) equals
+ * @deprecated As of 7.0, use {@link #setBuffered(boolean)} instead. Note
+ * that setReadThrough(true), setWriteThrough(true) equals
* setBuffered(false)
*/
@Deprecated
@@ -126,8 +126,8 @@ public interface Buffered extends Serializable {
*
* @return <code>true</code> if the object is in read-through mode,
* <code>false</code> if it's not.
- * @deprecated Use {@link #isBuffered(boolean)} instead. Note that
- * setReadThrough(true), setWriteThrough(true) equals
+ * @deprecated As of 7.0, use {@link #isBuffered(boolean)} instead. Note
+ * that setReadThrough(true), setWriteThrough(true) equals
* setBuffered(false)
*/
@Deprecated
@@ -145,8 +145,8 @@ public interface Buffered extends Serializable {
* @throws SourceException
* If the operation fails because of an exception is thrown by
* the data source. The cause is included in the exception.
- * @deprecated Use {@link #setBuffered(boolean)} instead. Note that
- * setReadThrough(true), setWriteThrough(true) equals
+ * @deprecated As of 7.0, use {@link #setBuffered(boolean)} instead. Note
+ * that setReadThrough(true), setWriteThrough(true) equals
* setBuffered(false)
*/
@Deprecated
diff --git a/server/src/com/vaadin/ui/AbstractField.java b/server/src/com/vaadin/ui/AbstractField.java
index 67a1826100..b914fb4c46 100644
--- a/server/src/com/vaadin/ui/AbstractField.java
+++ b/server/src/com/vaadin/ui/AbstractField.java
@@ -394,8 +394,8 @@ public abstract class AbstractField<T> extends AbstractComponent implements
* @throws InvalidValueException
* If the implicit commit operation fails because of a
* validation error.
- * @deprecated Use {@link #setBuffered(boolean)} instead. Note that
- * setReadThrough(true), setWriteThrough(true) equals
+ * @deprecated As of 7.0, use {@link #setBuffered(boolean)} instead. Note
+ * that setReadThrough(true), setWriteThrough(true) equals
* setBuffered(false)
*/
@Override
@@ -435,8 +435,8 @@ public abstract class AbstractField<T> extends AbstractComponent implements
* @throws SourceException
* If the operation fails because of an exception is thrown by
* the data source. The cause is included in the exception.
- * @deprecated Use {@link #setBuffered(boolean)} instead. Note that
- * setReadThrough(true), setWriteThrough(true) equals
+ * @deprecated As of 7.0, use {@link #setBuffered(boolean)} instead. Note
+ * that setReadThrough(true), setWriteThrough(true) equals
* setBuffered(false)
*/
@Override
diff --git a/server/src/com/vaadin/ui/DateField.java b/server/src/com/vaadin/ui/DateField.java
index 5130d665eb..790f3568d5 100644
--- a/server/src/com/vaadin/ui/DateField.java
+++ b/server/src/com/vaadin/ui/DateField.java
@@ -131,7 +131,7 @@ public class DateField extends AbstractField<Date> implements
/**
* Resolution identifier: seconds.
*
- * @deprecated Use {@link Resolution#SECOND}
+ * @deprecated As of 7.0, use {@link Resolution#SECOND}
*/
@Deprecated
public static final Resolution RESOLUTION_SEC = Resolution.SECOND;
@@ -139,7 +139,7 @@ public class DateField extends AbstractField<Date> implements
/**
* Resolution identifier: minutes.
*
- * @deprecated Use {@link Resolution#MINUTE}
+ * @deprecated As of 7.0, use {@link Resolution#MINUTE}
*/
@Deprecated
public static final Resolution RESOLUTION_MIN = Resolution.MINUTE;
@@ -147,7 +147,7 @@ public class DateField extends AbstractField<Date> implements
/**
* Resolution identifier: hours.
*
- * @deprecated Use {@link Resolution#HOUR}
+ * @deprecated As of 7.0, use {@link Resolution#HOUR}
*/
@Deprecated
public static final Resolution RESOLUTION_HOUR = Resolution.HOUR;
@@ -155,7 +155,7 @@ public class DateField extends AbstractField<Date> implements
/**
* Resolution identifier: days.
*
- * @deprecated Use {@link Resolution#DAY}
+ * @deprecated As of 7.0, use {@link Resolution#DAY}
*/
@Deprecated
public static final Resolution RESOLUTION_DAY = Resolution.DAY;
@@ -163,7 +163,7 @@ public class DateField extends AbstractField<Date> implements
/**
* Resolution identifier: months.
*
- * @deprecated Use {@link Resolution#MONTH}
+ * @deprecated As of 7.0, use {@link Resolution#MONTH}
*/
@Deprecated
public static final Resolution RESOLUTION_MONTH = Resolution.MONTH;
@@ -171,7 +171,7 @@ public class DateField extends AbstractField<Date> implements
/**
* Resolution identifier: years.
*
- * @deprecated Use {@link Resolution#YEAR}
+ * @deprecated As of 7.0, use {@link Resolution#YEAR}
*/
@Deprecated
public static final Resolution RESOLUTION_YEAR = Resolution.YEAR;
diff --git a/server/src/com/vaadin/ui/Table.java b/server/src/com/vaadin/ui/Table.java
index 6f7f88f883..2bbb69beaf 100644
--- a/server/src/com/vaadin/ui/Table.java
+++ b/server/src/com/vaadin/ui/Table.java
@@ -4470,7 +4470,7 @@ public class Table extends AbstractSelect implements Action.Container,
* would support this.
*
* @return True iff sorting is disabled.
- * @deprecated Use {@link #isSortEnabled()} instead
+ * @deprecated As of 7.0, use {@link #isSortEnabled()} instead
*/
@Deprecated
public boolean isSortDisabled() {
@@ -4491,7 +4491,7 @@ public class Table extends AbstractSelect implements Action.Container,
*
* @param sortDisabled
* True iff sorting is disabled.
- * @deprecated Use {@link #setSortEnabled(boolean)} instead
+ * @deprecated As of 7.0, use {@link #setSortEnabled(boolean)} instead
*/
@Deprecated
public void setSortDisabled(boolean sortDisabled) {