X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=eclipse%2Fplugins%2Forg.argeo.slc.ui.launch%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fui%2Flaunch%2FSlcPerspectiveFactory.java;fp=eclipse%2Fplugins%2Forg.argeo.slc.ui.launch%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fui%2Flaunch%2FSlcPerspectiveFactory.java;h=0000000000000000000000000000000000000000;hb=152502b083a8fba2a8d78046d0b0d2c6947c29e1;hp=e375949896aadaedf8421923c22792a61e2227bc;hpb=98c0c4d34ddaf4b1cf0bcdecee57575d6e2c65be;p=gpl%2Fargeo-slc.git diff --git a/eclipse/plugins/org.argeo.slc.ui.launch/src/main/java/org/argeo/slc/ui/launch/SlcPerspectiveFactory.java b/eclipse/plugins/org.argeo.slc.ui.launch/src/main/java/org/argeo/slc/ui/launch/SlcPerspectiveFactory.java deleted file mode 100644 index e37594989..000000000 --- a/eclipse/plugins/org.argeo.slc.ui.launch/src/main/java/org/argeo/slc/ui/launch/SlcPerspectiveFactory.java +++ /dev/null @@ -1,27 +0,0 @@ -package org.argeo.slc.ui.launch; - -import org.eclipse.jdt.ui.JavaUI; -import org.eclipse.ui.IFolderLayout; -import org.eclipse.ui.IPageLayout; -import org.eclipse.ui.IPerspectiveFactory; -import org.eclipse.ui.console.IConsoleConstants; - -public class SlcPerspectiveFactory implements IPerspectiveFactory { - - public void createInitialLayout(IPageLayout layout) { - // Get the editor area. - String editorArea = layout.getEditorArea(); - - IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.LEFT, 0.25f, - editorArea); - topLeft.addView(JavaUI.ID_PACKAGES); - - IFolderLayout bottom = layout.createFolder("bottom", IPageLayout.BOTTOM, 0.66f, - editorArea); - bottom.addView(IConsoleConstants.ID_CONSOLE_VIEW); - bottom.addView(IPageLayout.ID_TASK_LIST); - - layout.addActionSet("org.eclipse.debug.ui.launchActionSet"); - } - -}