]> git.argeo.org Git - gpl/argeo-slc.git/blob - workbench/OsgiExplorerPerspective.java
Prepare next development cycle
[gpl/argeo-slc.git] / workbench / OsgiExplorerPerspective.java
1 package org.argeo.cms.ui.workbench;
2
3 import org.eclipse.ui.IPageLayout;
4 import org.eclipse.ui.IPerspectiveFactory;
5
6 /** OSGi explorer perspective (to be enriched declaratively) */
7 public class OsgiExplorerPerspective implements IPerspectiveFactory {
8
9 public void createInitialLayout(IPageLayout layout) {
10 layout.setEditorAreaVisible(true);
11 layout.setFixed(false);
12 }
13 }