[jbosstools-commits] JBoss Tools SVN: r39838 - in trunk/common/plugins/org.jboss.tools.common.ui: src/org/jboss/tools/common/ui and 1 other directory.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Mon Mar 26 18:15:16 EDT 2012


Author: akazakov
Date: 2012-03-26 18:15:15 -0400 (Mon, 26 Mar 2012)
New Revision: 39838

Modified:
   trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF
   trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/JBossPerspectiveFactory.java
Log:
https://issues.jboss.org/browse/JBIDE-11405 JBoss Perspective : Move the JUnit view to the left container

Modified: trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF	2012-03-26 18:46:48 UTC (rev 39837)
+++ trunk/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF	2012-03-26 22:15:15 UTC (rev 39838)
@@ -30,7 +30,8 @@
  org.eclipse.ltk.core.refactoring;bundle-version="3.5.200",
  org.eclipse.jpt.common.core;bundle-version="1.0.0",
  org.eclipse.ltk.ui.refactoring;bundle-version="3.6.0",
- org.eclipse.wst.server.ui;bundle-version="1.3.0"
+ org.eclipse.wst.server.ui;bundle-version="1.3.0",
+ org.eclipse.jdt.junit;bundle-version="3.7.0"
 Export-Package: org.jboss.tools.common.ui,
  org.jboss.tools.common.ui.databinding,
  org.jboss.tools.common.ui.marker,

Modified: trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/JBossPerspectiveFactory.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/JBossPerspectiveFactory.java	2012-03-26 18:46:48 UTC (rev 39837)
+++ trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/JBossPerspectiveFactory.java	2012-03-26 22:15:15 UTC (rev 39838)
@@ -11,6 +11,7 @@
 package org.jboss.tools.common.ui;
 
 import org.eclipse.debug.ui.IDebugUIConstants;
+import org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart;
 import org.eclipse.jdt.ui.JavaUI;
 import org.eclipse.ui.IFolderLayout;
 import org.eclipse.ui.IPageLayout;
@@ -74,6 +75,7 @@
 		topLeft.addPlaceholder(IPageLayout.ID_RES_NAV);
 		topLeft.addPlaceholder(JavaUI.ID_TYPE_HIERARCHY);
 		topLeft.addPlaceholder(JavaUI.ID_PACKAGES_VIEW);
+		topLeft.addPlaceholder(TestRunnerViewPart.NAME);
 
 		// Bottom right.
 		IFolderLayout bottomRight = layout.createFolder("bottomRight", IPageLayout.BOTTOM, 0.7f, editorArea);//$NON-NLS-1$



More information about the jbosstools-commits mailing list