Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.ui/src/org/eclipse/osee/ote/ui/TestPerspective.java')
-rw-r--r--plugins/org.eclipse.osee.ote.ui/src/org/eclipse/osee/ote/ui/TestPerspective.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.ui/src/org/eclipse/osee/ote/ui/TestPerspective.java b/plugins/org.eclipse.osee.ote.ui/src/org/eclipse/osee/ote/ui/TestPerspective.java
index ecb515a8974..62263829c34 100644
--- a/plugins/org.eclipse.osee.ote.ui/src/org/eclipse/osee/ote/ui/TestPerspective.java
+++ b/plugins/org.eclipse.osee.ote.ui/src/org/eclipse/osee/ote/ui/TestPerspective.java
@@ -11,7 +11,6 @@
package org.eclipse.osee.ote.ui;
-import org.eclipse.jdt.ui.JavaUI;
import org.eclipse.osee.ote.ui.navigate.OteNavigateView;
import org.eclipse.ui.IFolderLayout;
import org.eclipse.ui.IPageLayout;
@@ -67,8 +66,11 @@ public class TestPerspective implements IPerspectiveFactory {
lower.addView("org.eclipse.ui.console.ConsoleView");
lower.addView(IPageLayout.ID_PROBLEM_VIEW);
- layout.addActionSet(JavaUI.ID_ACTION_SET);
- layout.addActionSet(JavaUI.ID_ELEMENT_CREATION_ACTION_SET);
+ // string found in JavaUI.ID_ACTION_SET
+ layout.addActionSet("org.eclipse.jdt.ui.JavaActionSet");
+
+ // string found in JavaUI.ID_ELEMENT_CRATION_ACTION_SET
+ layout.addActionSet("org.eclipse.jdt.ui.JavaElementCreationActionSet");
layout.addActionSet(IPageLayout.ID_NAVIGATE_ACTION_SET);
}

Back to the top