summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/TestComponentAddAndRecursion.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
committerArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
commit6a3c715dae922edd723c9423b4308d5d7948b74e (patch)
tree46a007274681a9803afccf135ace5554f3e01e3a /src/com/vaadin/tests/TestComponentAddAndRecursion.java
parent931d75fef69deb9b738fad97001cf5621de9f43e (diff)
downloadvaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.tar.gz
vaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.zip
Split demo and tests files to own source folders, for #3298
svn changeset:9390/svn branch:6.2
Diffstat (limited to 'src/com/vaadin/tests/TestComponentAddAndRecursion.java')
-rw-r--r--src/com/vaadin/tests/TestComponentAddAndRecursion.java128
1 files changed, 0 insertions, 128 deletions
diff --git a/src/com/vaadin/tests/TestComponentAddAndRecursion.java b/src/com/vaadin/tests/TestComponentAddAndRecursion.java
deleted file mode 100644
index 469d620b53..0000000000
--- a/src/com/vaadin/tests/TestComponentAddAndRecursion.java
+++ /dev/null
@@ -1,128 +0,0 @@
-/**
- *
- */
-package com.vaadin.tests;
-
-import com.vaadin.ui.Button;
-import com.vaadin.ui.CustomComponent;
-import com.vaadin.ui.GridLayout;
-import com.vaadin.ui.Label;
-import com.vaadin.ui.OrderedLayout;
-import com.vaadin.ui.Panel;
-import com.vaadin.ui.Window;
-import com.vaadin.ui.Button.ClickEvent;
-
-/**
- * @author marc
- *
- */
-public class TestComponentAddAndRecursion extends CustomComponent {
- Panel p;
- Panel p2;
- Label l;
- Label l2;
- Panel p3;
-
- public TestComponentAddAndRecursion() {
-
- OrderedLayout main = new OrderedLayout();
- setCompositionRoot(main);
-
- l = new Label("A");
- l2 = new Label("B");
- p = new Panel("p");
- p.addComponent(l);
- p.addComponent(l2);
- main.addComponent(p);
- p2 = new Panel("p2");
- p2.addComponent(l);
- main.addComponent(p2);
- p3 = new Panel("p3");
- p2.addComponent(p3);
-
- Button b = new Button("use gridlayout", new Button.ClickListener() {
-
- public void buttonClick(ClickEvent event) {
- p.setLayout(new GridLayout());
- p2.setLayout(new GridLayout());
- p3.setLayout(new GridLayout());
- }
-
- });
- main.addComponent(b);
- b = new Button("use orderedlayout", new Button.ClickListener() {
-
- public void buttonClick(ClickEvent event) {
- p.setLayout(new OrderedLayout());
- p2.setLayout(new OrderedLayout());
- p3.setLayout(new OrderedLayout());
- }
-
- });
- main.addComponent(b);
- b = new Button("move B", new Button.ClickListener() {
-
- public void buttonClick(ClickEvent event) {
- p2.addComponent(l2);
- }
-
- });
- main.addComponent(b);
- b = new Button("move p", new Button.ClickListener() {
-
- public void buttonClick(ClickEvent event) {
- p3.addComponent(p);
- }
-
- });
- main.addComponent(b);
- b = new Button("add to both", new Button.ClickListener() {
-
- public void buttonClick(ClickEvent event) {
- Label l = new Label("both");
- p.addComponent(l);
- p2.addComponent(l);
- }
-
- });
- main.addComponent(b);
- b = new Button("recurse", new Button.ClickListener() {
-
- public void buttonClick(ClickEvent event) {
- try {
- p3.addComponent(p2);
- getWindow().showNotification("ERROR",
- "This should have failed",
- Window.Notification.TYPE_ERROR_MESSAGE);
- } catch (Exception e) {
- getWindow().showNotification("OK", "threw, as expected",
- Window.Notification.TYPE_ERROR_MESSAGE);
- }
- }
-
- });
- main.addComponent(b);
- b = new Button("recurse2", new Button.ClickListener() {
-
- public void buttonClick(ClickEvent event) {
- Panel p = new Panel("dynamic");
- p.addComponent(p2);
- try {
- p3.addComponent(p);
- getWindow().showNotification("ERROR",
- "This should have failed",
- Window.Notification.TYPE_ERROR_MESSAGE);
- } catch (Exception e) {
- getWindow().showNotification("OK", "threw, as expected",
- Window.Notification.TYPE_ERROR_MESSAGE);
- }
- }
-
- });
- main.addComponent(b);
- /*
- * And that's it! The framework will display the main window and its
- * contents when the application is accessed with the terminal.
- */
- }
-}