aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/tests/featurebrowser/FeatureForm.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/FeatureForm.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/FeatureForm.java')
-rw-r--r--src/com/itmill/toolkit/tests/featurebrowser/FeatureForm.java317
1 files changed, 164 insertions, 153 deletions
diff --git a/src/com/itmill/toolkit/tests/featurebrowser/FeatureForm.java b/src/com/itmill/toolkit/tests/featurebrowser/FeatureForm.java
index e84dfa22dd..7b18555248 100644
--- a/src/com/itmill/toolkit/tests/featurebrowser/FeatureForm.java
+++ b/src/com/itmill/toolkit/tests/featurebrowser/FeatureForm.java
@@ -31,161 +31,172 @@ package com.itmill.toolkit.tests.featurebrowser;
import java.util.Date;
import com.itmill.toolkit.data.Property;
-import com.itmill.toolkit.ui.*;
+import com.itmill.toolkit.ui.Component;
+import com.itmill.toolkit.ui.DateField;
+import com.itmill.toolkit.ui.Form;
+import com.itmill.toolkit.ui.GridLayout;
+import com.itmill.toolkit.ui.Layout;
+import com.itmill.toolkit.ui.OrderedLayout;
+import com.itmill.toolkit.ui.Select;
+import com.itmill.toolkit.ui.TextField;
public class FeatureForm extends Feature implements
- Property.ValueChangeListener {
+ Property.ValueChangeListener {
- OrderedLayout demo = null;
-
- Form test;
-
- Layout formLayout = null;
-
- Select addField = new Select("Add field");
-
- Select resetLayout = new Select("Restart");
-
- protected Component getDemoComponent() {
-
- if (demo == null) {
- demo = new OrderedLayout();
- createDemo();
- }
-
- setJavadocURL("ui/Form.html");
-
- return demo;
- }
-
- private void createDemo() {
-
- demo.removeAllComponents();
-
- // Test form
- if (formLayout == null)
- test = new Form();
- else
- test = new Form(formLayout);
-
- demo.addComponent(test);
- OrderedLayout actions = new OrderedLayout(
- OrderedLayout.ORIENTATION_HORIZONTAL);
- demo.addComponent(actions);
-
- // form adder
- addField.setImmediate(true);
- addField.addItem("Add field");
- addField.setNullSelectionItemId("Add field");
- addField.addItem("Text field");
- addField.addItem("Time");
- addField.addItem("Option group");
- addField.addItem("Calendar");
- addField.addListener(this);
- actions.addComponent(addField);
-
- // Layout reset
- resetLayout.setImmediate(true);
- resetLayout.addItem("Select layout example");
- resetLayout.setNullSelectionItemId("Select layout example");
- resetLayout.addItem("Vertical form (OrderedLayout form-style)");
- resetLayout.addItem("Two columns (2x1 GridLayout)");
- resetLayout.addItem("Flow (OrderedLayout flow-orientation)");
- resetLayout.addListener(this);
- actions.addComponent(resetLayout);
-
- // Properties
- propertyPanel = new PropertyPanel(test);
- propertyPanel.addProperties("Form special properties", new Form());
- }
-
- public void valueChange(Property.ValueChangeEvent event) {
-
- if (event.getProperty() == resetLayout) {
-
- String value = (String) resetLayout.getValue();
-
- if (value != null) {
- formLayout = null;
-
- if (value.equals("Two columns (2x1 GridLayout)"))
- formLayout = new GridLayout(2, 1);
- if (value.equals("Horizontal (OrderedLayout)"))
- formLayout = new OrderedLayout(
- OrderedLayout.ORIENTATION_HORIZONTAL);
-
- createDemo();
- resetLayout.setValue(null);
- }
- }
-
- if (event.getProperty() == addField) {
-
- String value = (String) addField.getValue();
-
- if (value != null) {
- if (value.equals("Text field"))
- test.addField(new Object(), new TextField("Test field"));
- if (value.equals("Time")) {
- DateField d = new DateField("Time", new Date());
- d
- .setDescription("This is a DateField-component with text-style");
- d.setResolution(DateField.RESOLUTION_MIN);
- d.setStyle("text");
- test.addField(new Object(), d);
- }
- if (value.equals("Calendar")) {
- DateField c = new DateField("Calendar", new Date());
- c
- .setDescription("DateField-component with calendar-style and day-resolution");
- c.setStyle("calendar");
- c.setResolution(DateField.RESOLUTION_DAY);
- test.addField(new Object(), c);
- }
- if (value.equals("Option group")) {
- Select s = new Select("Options");
- s.setDescription("Select-component with optiongroup-style");
- s.addItem("Linux");
- s.addItem("Windows");
- s.addItem("Solaris");
- s.addItem("Symbian");
- s.setStyle("optiongroup");
-
- test.addField(new Object(), s);
- }
-
- addField.setValue(null);
- }
- }
- }
-
- protected String getDescriptionXHTML() {
- return "Form is a flexible, yet simple container for fields. "
- + " It provides support for any layouts and provides buffering interface for"
- + " easy connection of commit- and discard buttons. All the form"
- + " fields can be customized by adding validators, setting captions and icons, "
- + " setting immediateness, etc. Also direct mechanism for replacing existing"
- + " fields with selections is given."
- + " <br /><br />Form provides customizable editor for classes implementing"
- + " Item-interface. Also the form itself"
- + " implements this interface for easier connectivity to other items."
- + " To use the form as editor for an item, just connect the item to"
- + " form.After the item has been connected to the form,"
- + " the automatically created fields can be customized and new fields can"
- + " be added. If you need to connect a class that does not implement"
- + " Item-interface, most properties of any"
- + " class following bean pattern, can be accessed trough"
- + " BeanItem."
- + " <br /><br />The best example of Form usage is the this feature browser itself; "
- + " all the Property-panels in demos are composed of Form-components.";
- }
-
- protected String getTitle() {
- return "Form";
- }
-
- protected String getImage() {
- return "icon_demo.png";
- }
+ OrderedLayout demo = null;
+
+ Form test;
+
+ Layout formLayout = null;
+
+ Select addField = new Select("Add field");
+
+ Select resetLayout = new Select("Restart");
+
+ protected Component getDemoComponent() {
+
+ if (demo == null) {
+ demo = new OrderedLayout();
+ createDemo();
+ }
+
+ setJavadocURL("ui/Form.html");
+
+ return demo;
+ }
+
+ private void createDemo() {
+
+ demo.removeAllComponents();
+
+ // Test form
+ if (formLayout == null) {
+ test = new Form();
+ } else {
+ test = new Form(formLayout);
+ }
+
+ demo.addComponent(test);
+ OrderedLayout actions = new OrderedLayout(
+ OrderedLayout.ORIENTATION_HORIZONTAL);
+ demo.addComponent(actions);
+
+ // form adder
+ addField.setImmediate(true);
+ addField.addItem("Add field");
+ addField.setNullSelectionItemId("Add field");
+ addField.addItem("Text field");
+ addField.addItem("Time");
+ addField.addItem("Option group");
+ addField.addItem("Calendar");
+ addField.addListener(this);
+ actions.addComponent(addField);
+
+ // Layout reset
+ resetLayout.setImmediate(true);
+ resetLayout.addItem("Select layout example");
+ resetLayout.setNullSelectionItemId("Select layout example");
+ resetLayout.addItem("Vertical form (OrderedLayout form-style)");
+ resetLayout.addItem("Two columns (2x1 GridLayout)");
+ resetLayout.addItem("Flow (OrderedLayout flow-orientation)");
+ resetLayout.addListener(this);
+ actions.addComponent(resetLayout);
+
+ // Properties
+ propertyPanel = new PropertyPanel(test);
+ propertyPanel.addProperties("Form special properties", new Form());
+ }
+
+ public void valueChange(Property.ValueChangeEvent event) {
+
+ if (event.getProperty() == resetLayout) {
+
+ String value = (String) resetLayout.getValue();
+
+ if (value != null) {
+ formLayout = null;
+
+ if (value.equals("Two columns (2x1 GridLayout)")) {
+ formLayout = new GridLayout(2, 1);
+ }
+ if (value.equals("Horizontal (OrderedLayout)")) {
+ formLayout = new OrderedLayout(
+ OrderedLayout.ORIENTATION_HORIZONTAL);
+ }
+
+ createDemo();
+ resetLayout.setValue(null);
+ }
+ }
+
+ if (event.getProperty() == addField) {
+
+ String value = (String) addField.getValue();
+
+ if (value != null) {
+ if (value.equals("Text field")) {
+ test.addField(new Object(), new TextField("Test field"));
+ }
+ if (value.equals("Time")) {
+ DateField d = new DateField("Time", new Date());
+ d
+ .setDescription("This is a DateField-component with text-style");
+ d.setResolution(DateField.RESOLUTION_MIN);
+ d.setStyle("text");
+ test.addField(new Object(), d);
+ }
+ if (value.equals("Calendar")) {
+ DateField c = new DateField("Calendar", new Date());
+ c
+ .setDescription("DateField-component with calendar-style and day-resolution");
+ c.setStyle("calendar");
+ c.setResolution(DateField.RESOLUTION_DAY);
+ test.addField(new Object(), c);
+ }
+ if (value.equals("Option group")) {
+ Select s = new Select("Options");
+ s.setDescription("Select-component with optiongroup-style");
+ s.addItem("Linux");
+ s.addItem("Windows");
+ s.addItem("Solaris");
+ s.addItem("Symbian");
+ s.setStyle("optiongroup");
+
+ test.addField(new Object(), s);
+ }
+
+ addField.setValue(null);
+ }
+ }
+ }
+
+ protected String getDescriptionXHTML() {
+ return "Form is a flexible, yet simple container for fields. "
+ + " It provides support for any layouts and provides buffering interface for"
+ + " easy connection of commit- and discard buttons. All the form"
+ + " fields can be customized by adding validators, setting captions and icons, "
+ + " setting immediateness, etc. Also direct mechanism for replacing existing"
+ + " fields with selections is given."
+ + " <br /><br />Form provides customizable editor for classes implementing"
+ + " Item-interface. Also the form itself"
+ + " implements this interface for easier connectivity to other items."
+ + " To use the form as editor for an item, just connect the item to"
+ + " form.After the item has been connected to the form,"
+ + " the automatically created fields can be customized and new fields can"
+ + " be added. If you need to connect a class that does not implement"
+ + " Item-interface, most properties of any"
+ + " class following bean pattern, can be accessed trough"
+ + " BeanItem."
+ + " <br /><br />The best example of Form usage is the this feature browser itself; "
+ + " all the Property-panels in demos are composed of Form-components.";
+ }
+
+ protected String getTitle() {
+ return "Form";
+ }
+
+ protected String getImage() {
+ return "icon_demo.png";
+ }
}