aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-server/src/main/java/com/vaadin/v7/ui/DateField.java
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2017-02-24 15:34:45 +0200
committerHenri Sara <henri.sara@gmail.com>2017-03-07 12:36:54 +0200
commit47beb11cfd4f047d7c7b74f3da29de2395270735 (patch)
tree2120bf8cdfd0aa60c409b0efedf52ba1a719a9cb /compatibility-server/src/main/java/com/vaadin/v7/ui/DateField.java
parent6b4dffa44cc9b419391dc3b0dd836b8ac8f163ca (diff)
downloadvaadin-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/DateField.java')
-rw-r--r--compatibility-server/src/main/java/com/vaadin/v7/ui/DateField.java20
1 files changed, 8 insertions, 12 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/DateField.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/DateField.java
index 61f670da6d..16b0268354 100644
--- a/compatibility-server/src/main/java/com/vaadin/v7/ui/DateField.java
+++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/DateField.java
@@ -39,6 +39,7 @@ import com.vaadin.ui.DateTimeField;
import com.vaadin.ui.LegacyComponent;
import com.vaadin.ui.declarative.DesignAttributeHandler;
import com.vaadin.ui.declarative.DesignContext;
+import com.vaadin.v7.data.Buffered;
import com.vaadin.v7.data.Property;
import com.vaadin.v7.data.Validator;
import com.vaadin.v7.data.Validator.InvalidValueException;
@@ -56,12 +57,12 @@ import com.vaadin.v7.shared.ui.datefield.TextualDateFieldState;
* </p>
* <p>
* Since <code>DateField</code> extends <code>LegacyAbstractField</code> it
- * implements the {@link com.vaadin.v7.data.Buffered}interface.
+ * implements the {@link Buffered}interface.
* </p>
* <p>
* A <code>DateField</code> is in write-through mode by default, so
- * {@link com.vaadin.v7.ui.AbstractField#setWriteThrough(boolean)}must be called
- * to enable buffering.
+ * {@link AbstractField#setWriteThrough(boolean)}must be called to enable
+ * buffering.
* </p>
*
* @author Vaadin Ltd.
@@ -234,8 +235,8 @@ public class DateField extends AbstractField<Date> implements
* Constructs a new <code>DateField</code> with the given caption and
* initial text contents. The editor constructed this way will not be bound
* to a Property unless
- * {@link com.vaadin.v7.data.Property.Viewer#setPropertyDataSource(Property)}
- * is called to bind it.
+ * {@link Property.Viewer#setPropertyDataSource(Property)} is called to bind
+ * it.
*
* @param caption
* the caption <code>String</code> for the editor.
@@ -700,11 +701,6 @@ public class DateField extends AbstractField<Date> implements
return Date.class;
}
- /*
- * (non-Javadoc)
- *
- * @see com.vaadin.ui.AbstractField#setValue(java.lang.Object, boolean)
- */
@Override
protected void setValue(Date newValue, boolean repaintIsNotNeeded)
throws Property.ReadOnlyException {
@@ -857,7 +853,7 @@ public class DateField extends AbstractField<Date> implements
* @param dateFormat
* the dateFormat to set
*
- * @see com.vaadin.ui.AbstractComponent#setLocale(Locale))
+ * @see AbstractComponent#setLocale(Locale))
*/
public void setDateFormat(String dateFormat) {
this.dateFormat = dateFormat;
@@ -952,7 +948,7 @@ public class DateField extends AbstractField<Date> implements
* invalid if it contains text typed in by the user that couldn't be parsed
* into a Date value.
*
- * @see com.vaadin.v7.ui.AbstractField#validate()
+ * @see AbstractField#validate()
*/
@Override
public void validate() throws InvalidValueException {