Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / view / reporting / ReportingViewPart.java
1 /**
2 * Copyright (C) 2007 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
10 package eu.etaxonomy.taxeditor.view.reporting;
11
12 import org.eclipse.swt.SWT;
13 import org.eclipse.swt.layout.GridData;
14 import org.eclipse.swt.widgets.Composite;
15 import org.eclipse.swt.widgets.Text;
16 import org.eclipse.ui.part.ViewPart;
17
18 /**
19 * @author n.hoffmann
20 * @created Dec 14, 2010
21 * @version 1.0
22 */
23 public class ReportingViewPart extends ViewPart {
24
25 public static final String ID = "eu.etaxonomy.taxeditor.reporting.viewPart";
26
27 private Text text;
28
29 /* (non-Javadoc)
30 * @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
31 */
32 @Override
33 public void createPartControl(Composite parent) {
34 text = new Text(parent, SWT.MULTI);
35 text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
36 }
37
38 /* (non-Javadoc)
39 * @see org.eclipse.ui.part.WorkbenchPart#setFocus()
40 */
41 @Override
42 public void setFocus() {
43
44 }
45
46 }