had to rename the packages to make them compliant with buckminster
[taxeditor.git] / eu.etaxonomy.taxeditor.bulkeditor / src / test / java / eu / etaxonomy / taxeditor / bulkeditor / Perspective.java
1 package eu.etaxonomy.taxeditor.bulkeditor;
2
3 import org.eclipse.ui.IPageLayout;
4 import org.eclipse.ui.IPerspectiveFactory;
5
6 public class Perspective implements IPerspectiveFactory {
7
8 public static final String ID = "eu.etaxonomy.taxeditor.bulkeditor.perspective";
9
10 public void createInitialLayout(IPageLayout layout) {
11 layout.setEditorAreaVisible(true);
12 layout.setFixed(true);
13 }
14 }