Project

General

Profile

Download (860 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.editor.AppModelId;
9

    
10
/**
11
 * Uses Class
12
 * @author a.theys
13
 * @created mar 13, 2012
14
 * @version 1.0
15
 */
16
public class Uses extends Default {
17

    
18
	/* (non-Javadoc)
19
	 * @see org.eclipse.ui.IPerspectiveFactory#createInitialLayout(org.eclipse.ui.IPageLayout)
20
	 */
21
	/** {@inheritDoc} */
22
	@Override
23
	public void createInitialLayout(IPageLayout layout) {
24
		layout.addView(NAVIGATOR, IPageLayout.LEFT, 0.25f, layout.getEditorArea());
25
		layout.addView(DETAILS_VIEW, IPageLayout.RIGHT, 0.25f, layout.getEditorArea());
26
		layout.addView(AppModelId.PARTDESCRIPTOR_EU_ETAXONOMY_TAXEDITOR_EDITOR_VIEW_USES, IPageLayout.BOTTOM, 0.25f, layout.getEditorArea());
27

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

    
31

    
32
}
33

    
(7-7/7)