Project

General

Profile

Actions

bug #6670

open

[DISCUSS] What does the "Reporting" view do? Is it needed?

Added by Patrick Plitzner almost 7 years ago.

Status:
New
Priority:
New
Category:
taxeditor
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Severity:
normal
Found in Version:

Description

The class itself does not do anything:

/**
* Copyright (C) 2007 EDIT
* European Distributed Institute of Taxonomy 
* http://www.e-taxonomy.eu
* 
* The contents of this file are subject to the Mozilla Public License Version 1.1
* See LICENSE.TXT at the top of this package for the full license terms.
*/

package eu.etaxonomy.taxeditor.view.reporting;

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.part.ViewPart;

/**
 * @author n.hoffmann
 * @created Dec 14, 2010
 * @version 1.0
 */
public class ReportingViewPart extends ViewPart {

    public static final String ID = "eu.etaxonomy.taxeditor.reporting.viewPart";

    private Text text; 

    @Override
    public void createPartControl(Composite parent) {
        text = new Text(parent, SWT.MULTI);
        text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
    }

    @Override
    public void setFocus() {

    }

}
Actions

Also available in: Atom PDF