aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-server/src/main/java/com/vaadin/v7/ui/Field.java
diff options
context:
space:
mode:
Diffstat (limited to 'compatibility-server/src/main/java/com/vaadin/v7/ui/Field.java')
-rw-r--r--compatibility-server/src/main/java/com/vaadin/v7/ui/Field.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/Field.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/Field.java
index 1594bc28b5..1e3a4fa7a3 100644
--- a/compatibility-server/src/main/java/com/vaadin/v7/ui/Field.java
+++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/Field.java
@@ -26,11 +26,10 @@ import com.vaadin.v7.data.Property;
* a value that the user can change through the user interface.
*
* LegacyField components are built upon the framework defined in the
- * LegacyField interface and the {@link com.vaadin.AbstractField} base class.
+ * LegacyField interface and the {@link AbstractField} base class.
*
- * The LegacyField interface inherits the {@link com.vaadin.ui.Component}
- * superinterface and also the {@link com.vaadin.ui.Property} interface to have
- * a value for the field.
+ * The LegacyField interface inherits the {@link Component} superinterface and
+ * also the {@link Property} interface to have a value for the field.
*
* @author Vaadin Ltd.
*
@@ -41,7 +40,7 @@ import com.vaadin.v7.data.Property;
* @deprecated This interface is, apart from the rename, identical to the Vaadin
* 7 {@code com.vaadin.ui.Field}. It is provided for compatibility
* and migration purposes. As of 8.0, new field components should
- * extend {@link com.vaadin.ui.AbstractField} instead.
+ * extend {@link AbstractField} instead.
*/
@Deprecated
public interface Field<T> extends Component, BufferedValidatable, Property<T>,