]> source.dussan.org Git - vaadin-framework.git/commitdiff
CRLF -> LF
authorArtur Signell <artur@vaadin.com>
Fri, 29 Jun 2012 09:08:48 +0000 (12:08 +0300)
committerArtur Signell <artur@vaadin.com>
Fri, 29 Jun 2012 09:16:28 +0000 (12:16 +0300)
tests/testbench/com/vaadin/tests/components/AddRemoveSetStyleNamesTest.java

index 21cf9e45a693da3872429348483e9735c85ae5e1..b458c12188d355e038bd22b21649f6c0b6fd13d4 100644 (file)
@@ -1,81 +1,81 @@
-package com.vaadin.tests.components;\r
-\r
-import com.vaadin.ui.Button;\r
-import com.vaadin.ui.Button.ClickEvent;\r
-import com.vaadin.ui.PopupDateField;\r
-\r
-public class AddRemoveSetStyleNamesTest extends TestBase {\r
-\r
-    private String style1 = "style1";\r
-    private String style2 = "style2";\r
-    private String thestyle = "thestyle";\r
-\r
-    private PopupDateField popupDateField;\r
-    private Button button1;\r
-    private Button button2;\r
-    private Button button3;\r
-\r
-    private Button.ClickListener listener;\r
-\r
-    @Override\r
-    protected void setup() {\r
-        popupDateField = new PopupDateField("PopupDateField");\r
-        popupDateField.setRequired(true);\r
-        popupDateField.setRequiredError("abcd");\r
-        addComponent(popupDateField);\r
-\r
-        listener = new Button.ClickListener() {\r
-\r
-            public void buttonClick(ClickEvent event) {\r
-                String style = (String) event.getButton().getData();\r
-                setComponentsStyle(style, !popupDateField.getStyleName()\r
-                        .contains(style), event.getButton());\r
-            }\r
-        };\r
-\r
-        button1 = new Button("Add style1", listener);\r
-        button1.setData(style1);\r
-        addComponent(button1);\r
-\r
-        button2 = new Button("Add style2", listener);\r
-        button2.setData(style2);\r
-        addComponent(button2);\r
-\r
-        button3 = new Button("Set thestyle", new Button.ClickListener() {\r
-\r
-            public void buttonClick(ClickEvent event) {\r
-                if (popupDateField.getStyleName().contains(thestyle)) {\r
-                    popupDateField.removeStyleName(thestyle);\r
-                    button3.setCaption("Set thestyle");\r
-                } else {\r
-                    popupDateField.setStyleName(thestyle);\r
-                    button1.setCaption("Add style1");\r
-                    button2.setCaption("Add style2");\r
-                    button3.setCaption("Remove thestyle");\r
-                }\r
-            }\r
-        });\r
-        addComponent(button3);\r
-    }\r
-\r
-    private void setComponentsStyle(String style, boolean add, Button button) {\r
-        if (add) {\r
-            popupDateField.addStyleName(style);\r
-            button.setCaption("Remove " + style);\r
-        } else {\r
-            popupDateField.removeStyleName(style);\r
-            button.setCaption("Add " + style);\r
-        }\r
-    }\r
-\r
-    @Override\r
-    protected String getDescription() {\r
-        return "If a widget has set multiple css class names, AbtractComponentConnector.getStyleNames() removes all but first one of them. This is not acceptable, because we should be able to create connector for any existing GWT component and thus we do not know it it depends on multiple css class names.";\r
-    }\r
-\r
-    @Override\r
-    protected Integer getTicketNumber() {\r
-        return 8664;\r
-    }\r
-\r
+package com.vaadin.tests.components;
+
+import com.vaadin.ui.Button;
+import com.vaadin.ui.Button.ClickEvent;
+import com.vaadin.ui.PopupDateField;
+
+public class AddRemoveSetStyleNamesTest extends TestBase {
+
+    private String style1 = "style1";
+    private String style2 = "style2";
+    private String thestyle = "thestyle";
+
+    private PopupDateField popupDateField;
+    private Button button1;
+    private Button button2;
+    private Button button3;
+
+    private Button.ClickListener listener;
+
+    @Override
+    protected void setup() {
+        popupDateField = new PopupDateField("PopupDateField");
+        popupDateField.setRequired(true);
+        popupDateField.setRequiredError("abcd");
+        addComponent(popupDateField);
+
+        listener = new Button.ClickListener() {
+
+            public void buttonClick(ClickEvent event) {
+                String style = (String) event.getButton().getData();
+                setComponentsStyle(style, !popupDateField.getStyleName()
+                        .contains(style), event.getButton());
+            }
+        };
+
+        button1 = new Button("Add style1", listener);
+        button1.setData(style1);
+        addComponent(button1);
+
+        button2 = new Button("Add style2", listener);
+        button2.setData(style2);
+        addComponent(button2);
+
+        button3 = new Button("Set thestyle", new Button.ClickListener() {
+
+            public void buttonClick(ClickEvent event) {
+                if (popupDateField.getStyleName().contains(thestyle)) {
+                    popupDateField.removeStyleName(thestyle);
+                    button3.setCaption("Set thestyle");
+                } else {
+                    popupDateField.setStyleName(thestyle);
+                    button1.setCaption("Add style1");
+                    button2.setCaption("Add style2");
+                    button3.setCaption("Remove thestyle");
+                }
+            }
+        });
+        addComponent(button3);
+    }
+
+    private void setComponentsStyle(String style, boolean add, Button button) {
+        if (add) {
+            popupDateField.addStyleName(style);
+            button.setCaption("Remove " + style);
+        } else {
+            popupDateField.removeStyleName(style);
+            button.setCaption("Add " + style);
+        }
+    }
+
+    @Override
+    protected String getDescription() {
+        return "If a widget has set multiple css class names, AbtractComponentConnector.getStyleNames() removes all but first one of them. This is not acceptable, because we should be able to create connector for any existing GWT component and thus we do not know it it depends on multiple css class names.";
+    }
+
+    @Override
+    protected Integer getTicketNumber() {
+        return 8664;
+    }
+
 }
\ No newline at end of file