aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/featurebrowser/IntroDataHandling.java
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@itmill.com>2009-05-11 09:19:03 +0000
committerHenri Sara <henri.sara@itmill.com>2009-05-11 09:19:03 +0000
commitadc8c0ad3573272c236040c3a76005b9e73a5737 (patch)
treea3860704dbd5b82dc6af38684b80f8ef79a32722 /src/com/vaadin/tests/featurebrowser/IntroDataHandling.java
parent5abc870dda584d0c2fc47fd5eec4ae3de3fa240e (diff)
downloadvaadin-framework-adc8c0ad3573272c236040c3a76005b9e73a5737.tar.gz
vaadin-framework-adc8c0ad3573272c236040c3a76005b9e73a5737.zip
#2904: initial bulk rename "com.itmill.toolkit" -> "com.vaadin"
- com.itmill.toolkit.external not yet fully renamed svn changeset:7715/svn branch:6.0
Diffstat (limited to 'src/com/vaadin/tests/featurebrowser/IntroDataHandling.java')
-rw-r--r--src/com/vaadin/tests/featurebrowser/IntroDataHandling.java78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/com/vaadin/tests/featurebrowser/IntroDataHandling.java b/src/com/vaadin/tests/featurebrowser/IntroDataHandling.java
new file mode 100644
index 0000000000..d164442d4c
--- /dev/null
+++ b/src/com/vaadin/tests/featurebrowser/IntroDataHandling.java
@@ -0,0 +1,78 @@
+/*
+@ITMillApache2LicenseForJavaFiles@
+ */
+
+package com.vaadin.tests.featurebrowser;
+
+import com.vaadin.ui.Component;
+import com.vaadin.ui.Form;
+import com.vaadin.ui.Label;
+import com.vaadin.ui.OrderedLayout;
+import com.vaadin.ui.Panel;
+import com.vaadin.ui.Select;
+
+public class IntroDataHandling extends Feature {
+
+ private static final String INTRO_TEXT = ""
+ + "Embedded Objects and Upload components are provided as samples"
+ + " for data handling section."
+ + "<br /><br />See the API documentation of respective components for more information.";
+
+ public IntroDataHandling() {
+ super();
+ }
+
+ @Override
+ protected Component getDemoComponent() {
+
+ final OrderedLayout l = new OrderedLayout();
+
+ final Panel panel = new Panel();
+ panel.setCaption("Data Handling");
+ l.addComponent(panel);
+
+ final Label label = new Label();
+ panel.addComponent(label);
+
+ label.setContentMode(Label.CONTENT_XHTML);
+ label.setValue(INTRO_TEXT);
+
+ // Properties
+ propertyPanel = new PropertyPanel(panel);
+ final Form ap = propertyPanel.createBeanPropertySet(new String[] {
+ "width", "height" });
+ final Select themes = (Select) propertyPanel.getField("style");
+ themes.addItem("light").getItemProperty(
+ themes.getItemCaptionPropertyId()).setValue("light");
+ themes.addItem("strong").getItemProperty(
+ themes.getItemCaptionPropertyId()).setValue("strong");
+ propertyPanel.addProperties("Panel Properties", ap);
+
+ return l;
+ }
+
+ @Override
+ protected String getExampleSrc() {
+ return null;
+ }
+
+ /**
+ * @see com.vaadin.tests.featurebrowser.Feature#getDescriptionXHTML()
+ */
+ @Override
+ protected String getDescriptionXHTML() {
+ return "Please select <em>Embedded Objects</em> or <em>Upload</em>"
+ + " from the menu for more information.";
+ }
+
+ @Override
+ protected String getImage() {
+ return null;
+ }
+
+ @Override
+ protected String getTitle() {
+ return null;
+ }
+
+}