diff options
Diffstat (limited to 'src/com/vaadin/demo/sampler/features/dates/DateResolution.java')
-rw-r--r-- | src/com/vaadin/demo/sampler/features/dates/DateResolution.java | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/com/vaadin/demo/sampler/features/dates/DateResolution.java b/src/com/vaadin/demo/sampler/features/dates/DateResolution.java deleted file mode 100644 index d4d64e0357..0000000000 --- a/src/com/vaadin/demo/sampler/features/dates/DateResolution.java +++ /dev/null @@ -1,41 +0,0 @@ -package com.vaadin.demo.sampler.features.dates;
-
-import com.vaadin.demo.sampler.APIResource;
-import com.vaadin.demo.sampler.Feature;
-import com.vaadin.demo.sampler.NamedExternalResource;
-import com.vaadin.ui.DateField;
-import com.vaadin.ui.InlineDateField;
-
-@SuppressWarnings("serial")
-public class DateResolution extends Feature {
- @Override
- public String getName() {
- return "Date selection, resolution";
- }
-
- @Override
- public String getDescription() {
- return "In this example, you can select a different resolution"
- + " from the combo box and see how the calendar component"
- + " changes.";
- }
-
- @Override
- public APIResource[] getRelatedAPI() {
- return new APIResource[] { new APIResource(DateField.class),
- new APIResource(InlineDateField.class) };
- }
-
- @SuppressWarnings("unchecked")
- @Override
- public Class<? extends Feature>[] getRelatedFeatures() {
- return new Class[] { DateInline.class, DatePopup.class,
- DateLocale.class };
- }
-
- @Override
- public NamedExternalResource[] getRelatedResources() {
- // TODO Auto-generated method stub
- return null;
- }
-}
|