package org.argeo.cms.ui.workbench; import org.eclipse.ui.IPageLayout; import org.eclipse.ui.IPerspectiveFactory; /** OSGi explorer perspective (to be enriched declaratively) */ public class OsgiExplorerPerspective implements IPerspectiveFactory { public void createInitialLayout(IPageLayout layout) { layout.setEditorAreaVisible(true); layout.setFixed(false); } }