summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/TestForTabSheet.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/TestForTabSheet.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/TestForTabSheet.java')
-rw-r--r--src/com/vaadin/tests/TestForTabSheet.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/com/vaadin/tests/TestForTabSheet.java b/src/com/vaadin/tests/TestForTabSheet.java
new file mode 100644
index 0000000000..f53faabfcb
--- /dev/null
+++ b/src/com/vaadin/tests/TestForTabSheet.java
@@ -0,0 +1,58 @@
+package com.vaadin.tests;
+
+import com.vaadin.ui.Button;
+import com.vaadin.ui.CustomComponent;
+import com.vaadin.ui.Label;
+import com.vaadin.ui.TabSheet;
+import com.vaadin.ui.Button.ClickEvent;
+import com.vaadin.ui.TabSheet.SelectedTabChangeEvent;
+
+public class TestForTabSheet extends CustomComponent implements
+ Button.ClickListener, TabSheet.SelectedTabChangeListener {
+ TabSheet tabsheet = new TabSheet();
+ Button tab1_root = new Button("Push this button");
+ Label tab2_root = new Label("Contents of Second Tab");
+ Label tab3_root = new Label("Contents of Third Tab");
+
+ TestForTabSheet() {
+ setCompositionRoot(tabsheet);
+
+ tabsheet.addListener(this);
+
+ /* Listen for button click events. */
+ tab1_root.addListener(this);
+ tabsheet.addTab(tab1_root, "First Tab", null);
+
+ /* A tab that is initially disabled. */
+ tab2_root.setEnabled(false);
+ tabsheet.addTab(tab2_root, "Second Tab", null);
+
+ /* A tab that is initially disabled. */
+ tab3_root.setEnabled(false);
+ tabsheet.addTab(tab3_root, "Third tab", null);
+ }
+
+ public void buttonClick(ClickEvent event) {
+ System.out.println("tab2=" + tab2_root.isEnabled() + " tab3="
+ + tab3_root.isEnabled());
+ tab2_root.setEnabled(true);
+ tab3_root.setEnabled(true);
+ }
+
+ public void selectedTabChange(SelectedTabChangeEvent event) {
+ /*
+ * Cast to a TabSheet. This isn't really necessary in this example, as
+ * we have only one TabSheet component, but would be useful if there
+ * were multiple TabSheets.
+ */
+ TabSheet source = (TabSheet) event.getSource();
+ if (source == tabsheet) {
+ /* If the first tab was selected. */
+ if (source.getSelectedTab() == tab1_root) {
+ System.out.println("foo");
+ tab2_root.setEnabled(false);
+ tab3_root.setEnabled(false);
+ }
+ }
+ }
+} \ No newline at end of file