X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.client.ui%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2FSlcExecutionPerspective.java;fp=org.argeo.slc.client.ui%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2FSlcExecutionPerspective.java;h=0000000000000000000000000000000000000000;hb=ecc22e604e47533c79de9cecdcdeacbc752cbff1;hp=7e9cc5220a958be7c8a2a9f04d589988324f6ebe;hpb=e07ded4632e53f8b8869763bc1f1f4091361e76e;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/SlcExecutionPerspective.java b/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/SlcExecutionPerspective.java deleted file mode 100644 index 7e9cc5220..000000000 --- a/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/SlcExecutionPerspective.java +++ /dev/null @@ -1,28 +0,0 @@ -package org.argeo.slc.client.ui; - -import org.eclipse.ui.IFolderLayout; -import org.eclipse.ui.IPageLayout; -import org.eclipse.ui.IPerspectiveFactory; - -/** Perspective to manage SLC execution flows. */ -public class SlcExecutionPerspective implements IPerspectiveFactory { - - public void createInitialLayout(IPageLayout layout) { - String editorArea = layout.getEditorArea(); - layout.setEditorAreaVisible(true); - layout.setFixed(false); - - IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, - 0.35f, editorArea); - left.addView(ClientUiPlugin.ID + ".jcrExecutionModulesView"); - // left.addView(ClientUiPlugin.ID + ".jcrResultListView"); - left.addView(ClientUiPlugin.ID + ".jcrResultTreeView"); - // Sleak view for SWT resource debugging - // left.addView("org.eclipse.swt.tools.views.SleakView"); - - IFolderLayout bottom = layout.createFolder("bottom", - IPageLayout.BOTTOM, 0.65f, editorArea); -// BOTTOM.ADDVIEW(SECURITYUIPLUGIN.PLUGIN_ID + ".LOGVIEW"); - bottom.addView(ClientUiPlugin.ID + ".jcrProcessListView"); - } -}