Last change
on this file was
3,
checked in by zeiss, 15 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
395 bytes
|
Rev | Line | |
---|
[3] | 1 | package de.ugoe.cs.swe.memos; |
---|
| 2 | |
---|
| 3 | import org.eclipse.ui.IPageLayout; |
---|
| 4 | import org.eclipse.ui.IPerspectiveFactory; |
---|
| 5 | |
---|
| 6 | public 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.