Remove hard coded plugin ID
authorBruno Sinou <bsinou@argeo.org>
Fri, 22 Mar 2013 14:05:57 +0000 (14:05 +0000)
committerBruno Sinou <bsinou@argeo.org>
Fri, 22 Mar 2013 14:05:57 +0000 (14:05 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@6194 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

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");
        }
 }