Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0eb689d833c3450a6f85775753a69597e62c2225 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.ote.ui.test.manager.pages;

import java.util.HashMap;
import java.util.Map;
import org.eclipse.osee.framework.plugin.core.IActionable;
import org.eclipse.osee.framework.ui.plugin.OseeUiActions;
import org.eclipse.osee.ote.service.ConnectionEvent;
import org.eclipse.osee.ote.ui.test.manager.core.TestManagerEditor;
import org.eclipse.osee.ote.ui.test.manager.internal.TestManagerPlugin;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;

/**
 * @author David Diepenbrock
 */
public class OverviewPage extends TestManagerPage implements IActionable {

   private static final String pageName = "Overview";
   private static final String release = "";
   Map<LabelEnum, Label> labelMap;

   private enum LabelEnum {
      TM_Release("This Test Manager will only work with TM Server Release " + release),
      Configuration,
      Contact,
      Description;

      private String toolTip;

      LabelEnum() {
         this("");
      }

      LabelEnum(String toolTip) {
         this.toolTip = toolTip;
      }

      public String getToolTipText() {
         return toolTip;
      }

      @Override
      public String toString() {
         return name().replaceAll("_", " ");
      }
   }

   /**
    * Creates and populates the Overview Page
    */
   public OverviewPage(Composite parent, int style, TestManagerEditor parentTestManager) {
      super(parent, style, parentTestManager);
      createPage();
      updateLabelText();
      computeScrollSize();
      TestManagerPlugin.getInstance().setHelp(this, "tm_overview_page", "org.eclipse.osee.framework.help.ui");
   }

   /**
    * @return Returns the pageName.
    */
   @Override
   public String getPageName() {
      return pageName;
   }

   /**
    * Refreshes the label's text based upon the test manager's model.
    */
   public void updateLabelText() {
      for (LabelEnum enumEntry : LabelEnum.values()) {
         String toSet = "";
         Label label = labelMap.get(enumEntry);
         switch (enumEntry) {
            case TM_Release:
               toSet = release;
               break;
            case Configuration:
               toSet = getTestManager().getModel().getConfiguration();
               break;
            case Contact:
               toSet = getTestManager().getModel().getContact();
               break;
            case Description:
               toSet = getTestManager().getModel().getDescription();
               break;
            default:
               break;
         }
         label.setText(toSet);
      }
   }

   @Override
   protected void createPage() {
      super.createPage();
      Composite parent = (Composite) getContent();
      Composite composite = new Composite(parent, SWT.NONE);
      composite.setLayout(new GridLayout(2, false));
      composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));

      labelMap = new HashMap<LabelEnum, Label>();
      for (LabelEnum enumEntry : LabelEnum.values()) {
         Label label = new Label(composite, SWT.NONE);
         label.setText(enumEntry.toString() + ": ");

         Label updateableLabel = new Label(composite, SWT.NONE);
         updateableLabel.setToolTipText(enumEntry.getToolTipText());

         labelMap.put(enumEntry, updateableLabel);
      }
      OseeUiActions.addButtonToEditorToolBar(this, TestManagerPlugin.getInstance(), composite,
         TestManagerEditor.namespace, "Test Manager");

   }

   @Override
   public String getActionDescription() {
      return "";
   }

   @Override
   public boolean areSettingsValidForRun() {
      return true;
   }

   @Override
   public void restoreData() {
      // Do Nothing
   }

   @Override
   public void saveData() {
      // Do Nothing
   }

   @Override
   public String getErrorMessage() {
      return "";
   }

   @Override
   public boolean onConnection(ConnectionEvent event) {
      return false;
   }

   @Override
   public boolean onDisconnect(ConnectionEvent event) {
      return false;

   }

   @Override
   public boolean onConnectionLost() {
      return false;
   }

}

Back to the top