Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-08-10 05:54:28 +0000
committerrbrooks2010-08-10 05:54:28 +0000
commit3b2d7abeede088f0097d83cd021b4197312b1890 (patch)
tree5cc29ce48b1b2d5bb91ac4e4d4a37c0d2ccd6718 /plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse
parent6444be31fe1034358f1de4dbf639a9f58ba826e1 (diff)
downloadorg.eclipse.osee-3b2d7abeede088f0097d83cd021b4197312b1890.tar.gz
org.eclipse.osee-3b2d7abeede088f0097d83cd021b4197312b1890.tar.xz
org.eclipse.osee-3b2d7abeede088f0097d83cd021b4197312b1890.zip
converted more string based type references to use type tokens
Diffstat (limited to 'plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse')
-rw-r--r--plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/reports/HighLevelSummary.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/reports/HighLevelSummary.java b/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/reports/HighLevelSummary.java
index f491a4ad435..8f7e491faff 100644
--- a/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/reports/HighLevelSummary.java
+++ b/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/reports/HighLevelSummary.java
@@ -16,9 +16,9 @@ import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.osee.framework.core.enums.CoreAttributeTypes;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.logging.OseeLog;
-import org.eclipse.osee.framework.skynet.core.utility.Requirements;
import org.eclipse.osee.ote.define.artifacts.TestRunOperator;
import org.eclipse.osee.ote.ui.define.OteUiDefinePlugin;
@@ -26,8 +26,8 @@ import org.eclipse.osee.ote.ui.define.OteUiDefinePlugin;
* @author Roberto E. Escobar
*/
public class HighLevelSummary implements ITestRunReport {
- private static final String[] HEADER = new String[] {Requirements.PARTITION, Requirements.SUBSYSTEM, "ScriptCount",
- "RunTime Issues", "Scripts with Failures", "Scripts Pass"};
+ private static final String[] HEADER = new String[] {CoreAttributeTypes.Partition.getName(),
+ CoreAttributeTypes.Subsystem.getName(), "ScriptCount", "RunTime Issues", "Scripts with Failures", "Scripts Pass"};
private final Map<String, CollectedData> dataMap;
public HighLevelSummary() {

Back to the top