source: trunk/de.ugoe.cs.swe.memos/src/de/ugoe/cs/swe/memos/Perspective.java @ 18

Last change on this file since 18 was 3, checked in by zeiss, 15 years ago
  • Property svn:mime-type set to text/plain
File size: 395 bytes
Line 
1package de.ugoe.cs.swe.memos;
2
3import org.eclipse.ui.IPageLayout;
4import org.eclipse.ui.IPerspectiveFactory;
5
6public class Perspective implements IPerspectiveFactory {
7
8        public void createInitialLayout(IPageLayout layout) {
9                layout.setEditorAreaVisible(false);
10                layout.addStandaloneView(
11                                "de.ugoe.cs.swe.memos.MainView", false,
12                                IPageLayout.LEFT, 1.0f, layout.getEditorArea());
13               
14        }
15}
Note: See TracBrowser for help on using the repository browser.