From: Artur Signell Date: Wed, 21 Dec 2011 08:40:43 +0000 (+0200) Subject: #8101 Deprecated PropertyFormatter in favor of Converters X-Git-Tag: 7.0.0.alpha1~54 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d2f71050787f571be02c5c336759b2014ca94c03;p=vaadin-framework.git #8101 Deprecated PropertyFormatter in favor of Converters --- diff --git a/src/com/vaadin/data/util/PropertyFormatter.java b/src/com/vaadin/data/util/PropertyFormatter.java index 1b27513594..e126d97d3c 100644 --- a/src/com/vaadin/data/util/PropertyFormatter.java +++ b/src/com/vaadin/data/util/PropertyFormatter.java @@ -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<String>) * + * @deprecated Since 7.0 replaced by {@link Converter} * @author Vaadin Ltd. * @since 5.3.0 */ @SuppressWarnings("serial") +@Deprecated public abstract class PropertyFormatter extends AbstractProperty implements Property.Viewer, Property.ValueChangeListener, Property.ReadOnlyStatusChangeListener {