diff options
author | Ilia Motornyi <elmot@vaadin.com> | 2017-03-15 21:08:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-15 21:08:47 +0200 |
commit | e5488dff791afe585bf7ab42e268c3e1f342c142 (patch) | |
tree | 93d5e972f7d2daaba4495b26554fdbec928c9529 /compatibility-shared | |
parent | a3e4931d3a301ead6d9c918974d3df8423157960 (diff) | |
download | vaadin-framework-e5488dff791afe585bf7ab42e268c3e1f342c142.tar.gz vaadin-framework-e5488dff791afe585bf7ab42e268c3e1f342c142.zip |
Replacement guide javadocs for deprecated classes
Fixes #8682
Diffstat (limited to 'compatibility-shared')
-rw-r--r-- | compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/datefield/Resolution.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/datefield/Resolution.java b/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/datefield/Resolution.java index fc457b4ff9..3d75c48006 100644 --- a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/datefield/Resolution.java +++ b/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/datefield/Resolution.java @@ -15,6 +15,9 @@ */ package com.vaadin.v7.shared.ui.datefield; +import com.vaadin.shared.ui.datefield.DateResolution; +import com.vaadin.shared.ui.datefield.DateTimeResolution; + import java.util.ArrayList; import java.util.List; @@ -23,6 +26,9 @@ import java.util.List; * * @author Vaadin Ltd. * @since 7.0 + * + * @deprecated As of 8.0, replaced by {@link DateResolution} and {@link DateTimeResolution}, + * used by new {@code com.vaadin.ui.DateField} and {@code com.vaadin.ui.DateTimeField} */ public enum Resolution { // Values from Calendar.SECOND etc. Set as ints to avoid Calendar dependency |