]> source.dussan.org Git - vaadin-framework.git/commitdiff
#8101 Deprecated PropertyFormatter in favor of Converters
authorArtur Signell <artur@vaadin.com>
Wed, 21 Dec 2011 08:40:43 +0000 (10:40 +0200)
committerArtur Signell <artur@vaadin.com>
Wed, 21 Dec 2011 08:41:12 +0000 (10:41 +0200)
src/com/vaadin/data/util/PropertyFormatter.java

index 1b275135944777fa57d36f45188eab7af55859df..e126d97d3cf23f00c7eb9adb5b35563b3af90c16 100644 (file)
@@ -4,6 +4,7 @@
 package com.vaadin.data.util;
 
 import com.vaadin.data.Property;
+import com.vaadin.data.util.converter.Converter;
 
 /**
  * Formatting proxy for a {@link Property}.
@@ -33,10 +34,12 @@ import com.vaadin.data.Property;
  *            type of the underlying property (a PropertyFormatter is always a
  *            Property&lt;String&gt;)
  * 
+ * @deprecated Since 7.0 replaced by {@link Converter}
  * @author Vaadin Ltd.
  * @since 5.3.0
  */
 @SuppressWarnings("serial")
+@Deprecated
 public abstract class PropertyFormatter<T> extends AbstractProperty<String>
         implements Property.Viewer, Property.ValueChangeListener,
         Property.ReadOnlyStatusChangeListener {