ref #6913 Remove unused views from store plugin
authorPatrick Plitzner <p.plitzner@bgbm.org>
Wed, 23 Aug 2017 07:06:54 +0000 (09:06 +0200)
committerPatrick Plitzner <p.plitzner@bgbm.org>
Wed, 23 Aug 2017 07:06:54 +0000 (09:06 +0200)
eu.etaxonomy.taxeditor.store/plugin.xml
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/view/reporting/ReportingViewPart.java [deleted file]

index 560e593a024aa065a8338597e1cea6b963c51be1..efc41a5b37c645497dfb28b1e15394c927d3399e 100755 (executable)
         id="eu.etaxonomy.taxeditor.view.dataimport.GbifResponseImportView"
         name="%view.name.8">
          </view>
-      <view  
-                       name="%view.name.0"  
-                       category="org.eclipse.ui"  
-                       class="org.eclipse.ui.ExtensionFactory:progressView"  
-                       id="org.eclipse.ui.views.ProgressView">  
-               </view>
-               <view  
-                       name="%view.name.1"  
-                       icon="icons/console.gif"  
-                       category="org.eclipse.ui"  
-                       class="org.eclipse.ui.ExtensionFactory:logView"  
-                       id="org.eclipse.ui.views.LogView">  
-               </view>
-  <view
-        class="eu.etaxonomy.taxeditor.view.reporting.ReportingViewPart"
-        id="eu.etaxonomy.taxeditor.reporting.viewPart"
-        name="%view.name.2"
-        restorable="true">
-  </view>
-  <view
-        class="eu.etaxonomy.taxeditor.view.userecords.UseRecordsViewPart"
-        icon="icons/leaf_detail.png"
-        id="eu.etaxonomy.taxeditor.view.userecords"
-        name="%view.name.5"
-        restorable="true">
-  </view>
    </extension>
    <extension
          point="org.eclipse.ui.editors">
diff --git a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/view/reporting/ReportingViewPart.java b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/view/reporting/ReportingViewPart.java
deleted file mode 100644 (file)
index 941bda1..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
-* 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; 
-       
-       /* (non-Javadoc)
-        * @see org.eclipse.ui.part.WorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
-        */
-       @Override
-       public void createPartControl(Composite parent) {
-               text = new Text(parent, SWT.MULTI);
-               text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
-       }
-
-       /* (non-Javadoc)
-        * @see org.eclipse.ui.part.WorkbenchPart#setFocus()
-        */
-       @Override
-       public void setFocus() {
-               
-       }
-
-}