diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2017-02-24 15:34:45 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-03-07 12:36:54 +0200 |
commit | 47beb11cfd4f047d7c7b74f3da29de2395270735 (patch) | |
tree | 2120bf8cdfd0aa60c409b0efedf52ba1a719a9cb /compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java | |
parent | 6b4dffa44cc9b419391dc3b0dd836b8ac8f163ca (diff) | |
download | vaadin-framework-47beb11cfd4f047d7c7b74f3da29de2395270735.tar.gz vaadin-framework-47beb11cfd4f047d7c7b74f3da29de2395270735.zip |
Remove unnecessary full classname references
Diffstat (limited to 'compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java')
-rw-r--r-- | compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java index 6b7f86be20..bb273dab46 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/Label.java @@ -225,7 +225,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, /** * Gets the type of the Property. * - * @see com.vaadin.v7.data.Property#getType() + * @see Property#getType() */ @Override public Class<String> getType() { @@ -236,7 +236,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, * Gets the viewing data-source property. * * @return the data source property. - * @see com.vaadin.v7.data.Property.Viewer#getPropertyDataSource() + * @see Property.Viewer#getPropertyDataSource() */ @Override public Property getPropertyDataSource() { @@ -249,7 +249,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, * * @param newDataSource * the new data source Property - * @see com.vaadin.v7.data.Property.Viewer#setPropertyDataSource(com.vaadin.v7.data.Property) + * @see Property.Viewer#setPropertyDataSource(Property) */ @Override public void setPropertyDataSource(Property newDataSource) { @@ -351,7 +351,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, /** * Gets the Property that has been modified. * - * @see com.vaadin.v7.data.Property.ValueChangeEvent#getProperty() + * @see Property.ValueChangeEvent#getProperty() */ @Override public Property getProperty() { @@ -364,7 +364,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, * * @param listener * the Listener to be added. - * @see com.vaadin.v7.data.Property.ValueChangeNotifier#addListener(com.vaadin.v7.data.Property.ValueChangeListener) + * @see Property.ValueChangeNotifier#addListener(Property.ValueChangeListener) */ @Override public void addValueChangeListener(Property.ValueChangeListener listener) { @@ -374,7 +374,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, /** * @deprecated As of 7.0, replaced by - * {@link #addValueChangeListener(com.vaadin.v7.data.Property.ValueChangeListener)} + * {@link #addValueChangeListener(Property.ValueChangeListener)} **/ @Override @Deprecated @@ -387,7 +387,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, * * @param listener * the Listener to be removed. - * @see com.vaadin.v7.data.Property.ValueChangeNotifier#removeListener(com.vaadin.v7.data.Property.ValueChangeListener) + * @see Property.ValueChangeNotifier#removeListener(Property.ValueChangeListener) */ @Override public void removeValueChangeListener( @@ -398,7 +398,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, /** * @deprecated As of 7.0, replaced by - * {@link #removeValueChangeListener(com.vaadin.v7.data.Property.ValueChangeListener)} + * {@link #removeValueChangeListener(Property.ValueChangeListener)} **/ @Override @Deprecated @@ -417,7 +417,7 @@ public class Label extends AbstractLegacyComponent implements Property<String>, /** * Listens the value change events from data source. * - * @see com.vaadin.v7.data.Property.ValueChangeListener#valueChange(Property.ValueChangeEvent) + * @see Property.ValueChangeListener#valueChange(Property.ValueChangeEvent) */ @Override public void valueChange(Property.ValueChangeEvent event) { |