]> git.argeo.org Git - lgpl/argeo-commons.git/blob - osgi/plugins/org.argeo.osgi.ui.explorer/src/main/java/org/argeo/osgi/ui/explorer/OsgiExplorerPerspective.java
Introduce OSGi Explorer
[lgpl/argeo-commons.git] / osgi / plugins / org.argeo.osgi.ui.explorer / src / main / java / org / argeo / osgi / ui / explorer / OsgiExplorerPerspective.java
1 package org.argeo.osgi.ui.explorer;
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 }
14
15 }