Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/ui/TeamEfficiencyLineTab.java')
-rw-r--r--plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/ui/TeamEfficiencyLineTab.java88
1 files changed, 88 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/ui/TeamEfficiencyLineTab.java b/plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/ui/TeamEfficiencyLineTab.java
new file mode 100644
index 00000000000..0a3ac634689
--- /dev/null
+++ b/plugins/org.eclipse.osee.reports.efficiency/src/org/eclipse/osee/reports/efficiency/ui/TeamEfficiencyLineTab.java
@@ -0,0 +1,88 @@
+/*
+ * Copyright (c) 2012 Robert Bosch Engineering and Business Solutions Ltd India. 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
+ */
+package org.eclipse.osee.reports.efficiency.ui;
+
+import java.io.IOException;
+import java.net.MalformedURLException;
+import java.net.URL;
+
+import org.eclipse.birt.report.viewer.utilities.WebViewer;
+import org.eclipse.core.runtime.FileLocator;
+import org.eclipse.core.runtime.Path;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.eclipse.osee.framework.ui.skynet.results.IResultsEditorTab;
+import org.eclipse.osee.framework.ui.skynet.results.ResultsEditor;
+import org.eclipse.osee.reports.efficiency.Activator;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.browser.Browser;
+import org.eclipse.swt.widgets.Composite;
+import org.osgi.framework.Bundle;
+
+
+/**
+ * Class to create the tab in the ui
+ *
+ * @author Praveen Joseph
+ */
+public class TeamEfficiencyLineTab implements IResultsEditorTab {
+
+ private Browser browser;
+
+ @SuppressWarnings("deprecation")
+ @Override
+ public Composite createTab(final Composite parent, final ResultsEditor resultsEditor) throws OseeCoreException {
+
+ String path = getReportPath();
+ this.browser = new Browser(parent, SWT.NONE);
+ WebViewer.display(path, WebViewer.HTML, this.browser, "frameset");
+ this.browser.refresh();
+ return this.browser;
+ }
+
+ /**
+ * Method to return the report path
+ *
+ * @return the report path
+ */
+ public String getReportPath() {
+ String path = null;
+ try {
+ Bundle bundle = Platform.getBundle(getPluginID());
+ URL url = FileLocator.find(bundle, new Path("reports/" + getReport()), null);
+ path = FileLocator.toFileURL(url).getPath();
+ }
+ catch (MalformedURLException me) {
+ System.out.println("Fehler bei URL " + me.getStackTrace());
+ return null;
+ }
+ catch (IOException e) {
+ e.printStackTrace();
+ return null;
+ }
+ return path;
+ }
+
+ /**
+ * @return the plugin ID
+ */
+ public String getPluginID() {
+ return Activator.PLUGIN_ID;
+ }
+
+ /**
+ * @return the name of the report
+ */
+ public String getReport() {
+ return "TeamEfficiencyLine.rptdesign";
+ }
+
+ @Override
+ public String getTabName() {
+ return "Team Efficiency Trend";
+ }
+
+}

Back to the top