summaryrefslogtreecommitdiff
path: root/frontend/client/src/autotest/planner/test/TestViewDisplay.java
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/client/src/autotest/planner/test/TestViewDisplay.java')
-rw-r--r--frontend/client/src/autotest/planner/test/TestViewDisplay.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/frontend/client/src/autotest/planner/test/TestViewDisplay.java b/frontend/client/src/autotest/planner/test/TestViewDisplay.java
deleted file mode 100644
index 10351b0b..00000000
--- a/frontend/client/src/autotest/planner/test/TestViewDisplay.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package autotest.planner.test;
-
-import autotest.common.ui.NotifyManager;
-import autotest.planner.TestPlannerDisplay;
-import autotest.planner.TestPlannerTableDisplay;
-import autotest.planner.TestPlannerTableImpl;
-
-import com.google.gwt.user.client.ui.HTMLPanel;
-import com.google.gwt.user.client.ui.Panel;
-import com.google.gwt.user.client.ui.SimplePanel;
-
-
-public class TestViewDisplay implements TestPlannerDisplay, TestViewPresenter.Display {
-
- private Panel container = new SimplePanel();
-
- @Override
- public void initialize(HTMLPanel htmlPanel) {
- htmlPanel.add(container, "test_view_table");
- }
-
- @Override
- public void clearAllData() {
- container.clear();
- }
-
- @Override
- public void setLoading(boolean loading) {
- NotifyManager.getInstance().setLoading(loading);
- container.setVisible(!loading);
- }
-
- @Override
- public TestPlannerTableDisplay generateTestViewTableDisplay() {
- TestPlannerTableImpl display = new TestPlannerTableImpl();
- container.add(display);
- return display;
- }
-}