aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java
diff options
context:
space:
mode:
authorMarc Englund <marc.englund@itmill.com>2007-11-19 14:03:05 +0000
committerMarc Englund <marc.englund@itmill.com>2007-11-19 14:03:05 +0000
commitf2e3722df9676436680afc0f1991e91e1696fb99 (patch)
tree6f255ff78abaf96f1e71a1f2c9ecd3b66647f4a2 /src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java
parent93291f532db9d545cf2a8dd98e2671f27cd197b0 (diff)
downloadvaadin-framework-f2e3722df9676436680afc0f1991e91e1696fb99.tar.gz
vaadin-framework-f2e3722df9676436680afc0f1991e91e1696fb99.zip
MASS REFORMAT.
According to http://toolkit.intra.itmill.com/trac/itmilltoolkit/wiki/CodingConventions svn changeset:2864/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java')
-rw-r--r--src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java164
1 files changed, 81 insertions, 83 deletions
diff --git a/src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java b/src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java
index 2b6317304b..28530ecca8 100644
--- a/src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java
+++ b/src/com/itmill/toolkit/tests/featurebrowser/FeatureDateField.java
@@ -30,8 +30,6 @@ package com.itmill.toolkit.tests.featurebrowser;
import java.util.Locale;
-import com.itmill.toolkit.data.util.IndexedContainer;
-import com.itmill.toolkit.data.util.MethodProperty;
import com.itmill.toolkit.ui.Component;
import com.itmill.toolkit.ui.DateField;
import com.itmill.toolkit.ui.Form;
@@ -41,86 +39,86 @@ import com.itmill.toolkit.ui.Select;
public class FeatureDateField extends Feature {
- static private String[] localeNames;
- static {
- Locale[] locales = Locale.getAvailableLocales();
- localeNames = new String[locales.length];
- for (int i = 0; i < locales.length; i++)
- localeNames[i] = locales[i].getDisplayName();
- }
-
- public FeatureDateField() {
- super();
- }
-
- protected Component getDemoComponent() {
-
- OrderedLayout l = new OrderedLayout();
-
- l.addComponent(new Label("Your default locale is: "
- + this.getApplication().getLocale().toString()
- .replace('_', '-')));
-
- DateField df = new DateField();
- df.setValue(new java.util.Date());
- l.addComponent(df);
-
- // Properties
- propertyPanel = new PropertyPanel(df);
- Form ap = propertyPanel.createBeanPropertySet(new String[] {
- "resolution", "locale" });
- ap.replaceWithSelect("resolution", new Object[] {
- new Integer(DateField.RESOLUTION_YEAR),
- new Integer(DateField.RESOLUTION_MONTH),
- new Integer(DateField.RESOLUTION_DAY),
- new Integer(DateField.RESOLUTION_HOUR),
- new Integer(DateField.RESOLUTION_MIN),
- new Integer(DateField.RESOLUTION_SEC),
- new Integer(DateField.RESOLUTION_MSEC) }, new Object[] {
- "Year", "Month", "Day", "Hour", "Minute", "Second",
- "Millisecond" });
- ap.replaceWithSelect("locale", Locale.getAvailableLocales(),
- localeNames);
- ap.getField("resolution").setValue(
- new Integer(DateField.RESOLUTION_DAY));
- ap.getField("locale").setValue(Locale.getDefault());
- Select themes = (Select) propertyPanel.getField("style");
- themes.addItem("text").getItemProperty(
- themes.getItemCaptionPropertyId()).setValue("text");
- themes.addItem("calendar").getItemProperty(
- themes.getItemCaptionPropertyId()).setValue("calendar");
- propertyPanel.addProperties("DateField Properties", ap);
-
- setJavadocURL("ui/DateField.html");
-
- return l;
- }
-
- protected String getExampleSrc() {
- return "DateField df = new DateField(\"Caption\");\n"
- + "df.setValue(new java.util.Date());\n";
- }
-
- protected String getDescriptionXHTML() {
- return "Representing Dates and times and providing a way to select "
- + "or enter some specific date and/or time is an typical need in "
- + "data-entry user interfaces (UI). IT Mill Toolkit provides a DateField "
- + "component that is intuitive to use and yet controllable through "
- + "its properties."
- + "<br /><br />The calendar-style allows point-and-click selection "
- + "of dates while text-style shows only minimalistic user interface."
- + " Validators may be bound to the component to check and "
- + "validate the given input."
- + "<br /><br />On the demo tab you can try out how the different properties affect the "
- + "presentation of the component.";
- }
-
- protected String getImage() {
- return "icon_demo.png";
- }
-
- protected String getTitle() {
- return "DateField";
- }
+ static private String[] localeNames;
+ static {
+ Locale[] locales = Locale.getAvailableLocales();
+ localeNames = new String[locales.length];
+ for (int i = 0; i < locales.length; i++) {
+ localeNames[i] = locales[i].getDisplayName();
+ }
+ }
+
+ public FeatureDateField() {
+ super();
+ }
+
+ protected Component getDemoComponent() {
+
+ OrderedLayout l = new OrderedLayout();
+
+ l.addComponent(new Label("Your default locale is: "
+ + getApplication().getLocale().toString().replace('_', '-')));
+
+ DateField df = new DateField();
+ df.setValue(new java.util.Date());
+ l.addComponent(df);
+
+ // Properties
+ propertyPanel = new PropertyPanel(df);
+ Form ap = propertyPanel.createBeanPropertySet(new String[] {
+ "resolution", "locale" });
+ ap.replaceWithSelect("resolution", new Object[] {
+ new Integer(DateField.RESOLUTION_YEAR),
+ new Integer(DateField.RESOLUTION_MONTH),
+ new Integer(DateField.RESOLUTION_DAY),
+ new Integer(DateField.RESOLUTION_HOUR),
+ new Integer(DateField.RESOLUTION_MIN),
+ new Integer(DateField.RESOLUTION_SEC),
+ new Integer(DateField.RESOLUTION_MSEC) }, new Object[] {
+ "Year", "Month", "Day", "Hour", "Minute", "Second",
+ "Millisecond" });
+ ap.replaceWithSelect("locale", Locale.getAvailableLocales(),
+ localeNames);
+ ap.getField("resolution").setValue(
+ new Integer(DateField.RESOLUTION_DAY));
+ ap.getField("locale").setValue(Locale.getDefault());
+ Select themes = (Select) propertyPanel.getField("style");
+ themes.addItem("text").getItemProperty(
+ themes.getItemCaptionPropertyId()).setValue("text");
+ themes.addItem("calendar").getItemProperty(
+ themes.getItemCaptionPropertyId()).setValue("calendar");
+ propertyPanel.addProperties("DateField Properties", ap);
+
+ setJavadocURL("ui/DateField.html");
+
+ return l;
+ }
+
+ protected String getExampleSrc() {
+ return "DateField df = new DateField(\"Caption\");\n"
+ + "df.setValue(new java.util.Date());\n";
+ }
+
+ protected String getDescriptionXHTML() {
+ return "Representing Dates and times and providing a way to select "
+ + "or enter some specific date and/or time is an typical need in "
+ + "data-entry user interfaces (UI). IT Mill Toolkit provides a DateField "
+ + "component that is intuitive to use and yet controllable through "
+ + "its properties."
+ + "<br /><br />The calendar-style allows point-and-click selection "
+ + "of dates while text-style shows only minimalistic user interface."
+ + " Validators may be bound to the component to check and "
+ + "validate the given input."
+ + "<br /><br />On the demo tab you can try out how the different properties affect the "
+ + "presentation of the component.";
+ }
+
+ protected String getImage() {
+ return "icon_demo.png";
+ }
+
+ protected String getTitle() {
+ return "DateField";
+ }
}