Project

General

Profile

Download (789 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2013 EDIT
3
 * European Distributed Institute of Taxonomy
4
 * http://www.e-taxonomy.eu
5
 *
6
 * The contents of this file are subject to the Mozilla Public License Version 1.1
7
 * See LICENSE.TXT at the top of this package for the full license terms.
8
 */
9
package eu.etaxonomy.taxeditor.perspective;
10

    
11
import org.eclipse.ui.IPageLayout;
12

    
13
/**
14
 * @author pplitzner
15
 * @date 10.12.2013
16
 *
17
 */
18
public class DerivatePerspective extends Default {
19

    
20
    @Override
21
    public void createInitialLayout(IPageLayout layout) {
22
        layout.addView(NAVIGATOR, IPageLayout.LEFT, 0.25f, layout.getEditorArea());
23

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

    
26
        layout.addView(FACTUAL_DATA_VIEW, IPageLayout.BOTTOM, 0.6f, NAVIGATOR);
27

    
28
    }
29

    
30
}
(3-3/7)