Project

General

Profile

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

    
11
package eu.etaxonomy.taxeditor.view.reporting;
12

    
13
import org.eclipse.swt.SWT;
14
import org.eclipse.swt.layout.GridData;
15
import org.eclipse.swt.widgets.Composite;
16
import org.eclipse.swt.widgets.Text;
17
import org.eclipse.ui.part.ViewPart;
18

    
19
/**
20
 * @author n.hoffmann
21
 * @created Dec 14, 2010
22
 * @version 1.0
23
 */
24
public class ReportingViewPart extends ViewPart {
25

    
26
	public static final String ID = "eu.etaxonomy.taxeditor.reporting.viewPart";
27
	
28
	private Text text; 
29
	
30
	/* (non-Javadoc)
31
	 * @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
32
	 */
33
	@Override
34
	public void createPartControl(Composite parent) {
35
		text = new Text(parent, SWT.MULTI);
36
		text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
37
	}
38

    
39
	/* (non-Javadoc)
40
	 * @see org.eclipse.ui.part.WorkbenchPart#setFocus()
41
	 */
42
	@Override
43
	public void setFocus() {
44
		
45
	}
46

    
47
}
    (1-1/1)