diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/ui/EmptyWindow.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/ui/EmptyWindow.java | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/uitest/src/com/vaadin/tests/components/ui/EmptyWindow.java b/uitest/src/com/vaadin/tests/components/ui/EmptyWindow.java index c3975921df..07ce8c3ff8 100644 --- a/uitest/src/com/vaadin/tests/components/ui/EmptyWindow.java +++ b/uitest/src/com/vaadin/tests/components/ui/EmptyWindow.java @@ -1,26 +1,26 @@ -package com.vaadin.tests.components.ui;
-
-import com.vaadin.server.VaadinRequest;
-import com.vaadin.tests.components.AbstractTestUI;
-import com.vaadin.ui.Label;
-import com.vaadin.ui.Window;
-
-public class EmptyWindow extends AbstractTestUI {
-
- @Override
- protected void setup(VaadinRequest request) {
- addWindow(new Window("My empty window"));
- setContent(new Label("UI"));
- }
-
- @Override
- protected String getTestDescription() {
- return "There should be an empty window on the screen. Currently it should have the min width defined in VWindow";
- }
-
- @Override
- protected Integer getTicketNumber() {
- return 10325;
- }
-
-}
+package com.vaadin.tests.components.ui; + +import com.vaadin.server.VaadinRequest; +import com.vaadin.tests.components.AbstractTestUI; +import com.vaadin.ui.Label; +import com.vaadin.ui.Window; + +public class EmptyWindow extends AbstractTestUI { + + @Override + protected void setup(VaadinRequest request) { + addWindow(new Window("My empty window")); + setContent(new Label("UI")); + } + + @Override + protected String getTestDescription() { + return "There should be an empty window on the screen. Currently it should have the min width defined in VWindow"; + } + + @Override + protected Integer getTicketNumber() { + return 10325; + } + +} |