Project

General

Profile

Download (801 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 *
3
 */
4
package eu.etaxonomy.taxeditor.perspective;
5

    
6
import org.eclipse.ui.IPageLayout;
7

    
8
import eu.etaxonomy.taxeditor.navigation.AppModelId;
9

    
10
/**
11
 * @author n.hoffmann
12
 *
13
 */
14
public class PolytomousKey extends Default {
15

    
16
	/* (non-Javadoc)
17
	 * @see org.eclipse.ui.IPerspectiveFactory#createInitialLayout(org.eclipse.ui.IPageLayout)
18
	 */
19
	@Override
20
	public void createInitialLayout(IPageLayout layout) {
21
		layout.addView(AppModelId.PARTDESCRIPTOR_EU_ETAXONOMY_TAXEDITOR_NAVIGATION_KEY_POLYTOMOUS_E4_POLYTOMOUSKEYVIEWPARTE4, IPageLayout.LEFT, 0.25f, layout.getEditorArea());
22

    
23
		layout.addView(DETAILS_VIEW, IPageLayout.RIGHT, 0.6f, layout.getEditorArea());
24

    
25
		layout.addView(SUPPLEMENTAL_VIEW, IPageLayout.BOTTOM, 0.6f, DETAILS_VIEW);
26

    
27
		createAdditionalFolder(layout, layout.getEditorArea());
28
	}
29

    
30
}
(4-4/7)