]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java
Update decorators to show more explicitly PASSED / FAILED / ERROR status in the Resul...
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui / src / main / java / org / argeo / slc / client / ui / SlcExecutionPerspective.java
index 4f0be36ebf9ea6a755bbb89676544f3c9c4a9275..257029f3b29759c485c784b39ea4c3a1c6bf513e 100644 (file)
@@ -15,6 +15,7 @@
  */
 package org.argeo.slc.client.ui;
 
+import org.argeo.security.ui.SecurityUiPlugin;
 import org.eclipse.ui.IFolderLayout;
 import org.eclipse.ui.IPageLayout;
 import org.eclipse.ui.IPerspectiveFactory;
@@ -29,14 +30,14 @@ public class SlcExecutionPerspective implements IPerspectiveFactory {
 
                IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT,
                                0.3f, editorArea);
-               left.addView("org.argeo.slc.client.ui.jcrExecutionModulesView");
-               left.addView("org.argeo.slc.client.ui.jcrResultListView");
+               left.addView(ClientUiPlugin.ID + ".jcrExecutionModulesView");
+               left.addView(ClientUiPlugin.ID + ".jcrResultListView");
                // Sleak view for SWT resource debugging
-               //left.addView("org.eclipse.swt.tools.views.SleakView");
+               // left.addView("org.eclipse.swt.tools.views.SleakView");
 
                IFolderLayout bottom = layout.createFolder("bottom",
                                IPageLayout.BOTTOM, 0.65f, editorArea);
-               bottom.addView("org.argeo.security.ui.logView");
-               bottom.addView("org.argeo.slc.client.ui.jcrProcessListView");
+               bottom.addView(SecurityUiPlugin.PLUGIN_ID + ".logView");
+               bottom.addView(ClientUiPlugin.ID + ".jcrProcessListView");
        }
 }