]> source.dussan.org Git - vaadin-framework.git/commitdiff
Moved test case to correct package (#2941)
authorArtur Signell <artur.signell@itmill.com>
Fri, 22 May 2009 16:45:22 +0000 (16:45 +0000)
committerArtur Signell <artur.signell@itmill.com>
Fri, 22 May 2009 16:45:22 +0000 (16:45 +0000)
svn changeset:7970/svn branch:6.0

src/com/vaadin/tests/components/panel/PanelShouldRemoveActionHandler.java [new file with mode: 0644]

diff --git a/src/com/vaadin/tests/components/panel/PanelShouldRemoveActionHandler.java b/src/com/vaadin/tests/components/panel/PanelShouldRemoveActionHandler.java
new file mode 100644 (file)
index 0000000..982cbce
--- /dev/null
@@ -0,0 +1,119 @@
+package com.vaadin.tests.components.panel;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import com.vaadin.event.Action;
+import com.vaadin.event.ShortcutAction;
+import com.vaadin.event.Action.Handler;
+import com.vaadin.event.ShortcutAction.ModifierKey;
+import com.vaadin.tests.components.TestBase;
+import com.vaadin.ui.Button;
+import com.vaadin.ui.Panel;
+import com.vaadin.ui.TextField;
+import com.vaadin.ui.Button.ClickEvent;
+
+public class PanelShouldRemoveActionHandler extends TestBase {
+
+    private Panel panel;
+
+    @Override
+    protected String getDescription() {
+        return "Adding action handlers to the panel should make them appear on the client side. Removing the action handlers should remove them also from the client side, also if all action handlers are removed.";
+    }
+
+    @Override
+    protected Integer getTicketNumber() {
+        return 2941;
+    }
+
+    @Override
+    protected void setup() {
+        panel = new Panel("A panel");
+        panel.addComponent(new TextField());
+        Button add = new Button("Add an action handler",
+                new Button.ClickListener() {
+
+                    public void buttonClick(ClickEvent event) {
+                        add();
+                    }
+
+                });
+        Button addAnother = new Button("Add another action handler",
+                new Button.ClickListener() {
+
+                    public void buttonClick(ClickEvent event) {
+                        addAnother();
+                    }
+
+                });
+        Button remove = new Button("Remove an action handler",
+                new Button.ClickListener() {
+
+                    public void buttonClick(ClickEvent event) {
+                        remove();
+                    }
+
+                });
+
+        addComponent(panel);
+        addComponent(add);
+        addComponent(addAnother);
+        addComponent(remove);
+    }
+
+    public void remove() {
+        panel.setCaption(panel.getCaption() + " - Removed handler");
+        panel.removeActionHandler(actionHandlers
+                .remove(actionHandlers.size() - 1));
+    }
+
+    private List<Handler> actionHandlers = new ArrayList<Handler>();
+
+    public void add() {
+        panel.setCaption(panel.getCaption() + " - Added handler");
+        Handler actionHandler = new Handler() {
+
+            public Action[] getActions(Object target, Object sender) {
+                return new Action[] { new ShortcutAction("Ctrl+Left",
+                        ShortcutAction.KeyCode.ARROW_LEFT,
+                        new int[] { ModifierKey.CTRL }) };
+            }
+
+            public void handleAction(Action action, Object sender, Object target) {
+                getMainWindow().showNotification(
+                        "Handling action " + action.getCaption());
+            }
+
+        };
+
+        addHandler(actionHandler);
+    }
+
+    public void addAnother() {
+        Handler actionHandler = new Handler() {
+
+            public Action[] getActions(Object target, Object sender) {
+                return new Action[] { new ShortcutAction("Ctrl+Right",
+                        ShortcutAction.KeyCode.ARROW_RIGHT,
+                        new int[] { ModifierKey.CTRL }) };
+            }
+
+            public void handleAction(Action action, Object sender, Object target) {
+                getMainWindow().showNotification(
+                        "Handling action " + action.getCaption());
+            }
+
+        };
+
+        addHandler(actionHandler);
+    }
+
+    private void addHandler(Handler actionHandler) {
+        actionHandlers.add(actionHandler);
+        panel.addActionHandler(actionHandler);
+        panel.setCaption("A panel with " + actionHandlers.size()
+                + " action handlers");
+
+    }
+}