cleanup
authorAndreas Müller <a.mueller@bgbm.org>
Tue, 6 Jul 2021 10:51:55 +0000 (12:51 +0200)
committerAndreas Müller <a.mueller@bgbm.org>
Tue, 6 Jul 2021 10:54:24 +0000 (12:54 +0200)
eu.etaxonomy.taxeditor.bulkeditor/src/main/java/eu/etaxonomy/taxeditor/bulkeditor/BulkEditorLables.java
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/identificationkey/AbstractIdentificaitonKeyWizard.java [deleted file]
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/identificationkey/AbstractIdentificationKeyWizard.java [new file with mode: 0644]
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/ImportManager.java

index 7a230c5fc41138e34b69c787c13a53a571a71c84..4f4adfa448f5b0b8551a509c1de01bcec2ce9d3b 100644 (file)
@@ -1,21 +1,17 @@
 /**
-       * Copyright (C) 2016 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.
-       */
-
+* Copyright (C) 2016 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.bulkeditor;
 /**
  * @author kluther
  * @date 29 Feb 2016
- *
  */
 public interface BulkEditorLables {
-       
-
 
            public static final String CONVERT_TEAM_2_PERSON_LABEL = "Convert Team to Person";
            public static final String CONVERT_PERSON_2_TEAM_LABEL = "Convert Person to Team";
@@ -28,8 +24,8 @@ public interface BulkEditorLables {
            public static final String NO_CONVERT_PERSON_TO_TEAM_MESSAGE = "Can not convert Person into a Team.";
            public static final String TRANSFORMATION_NOT_POSSIBLE_PERSON_PART_OF_TEAM_MESSAGE = "Person can not be transformed into team as it is already part of a team.";
            public static final String NO_CONVERT_TEAM_TO_PERSON_MESSAGE = "Can not convert Team to Person";
-          
-          
+
+
            public static final String UNSAVED_CHANGES_MESSAGE = "There are unsaved changes in the source taxon. Please save first.";
                public static final String SINGLE_PERSON_SELECTION_MESSAGE = "The chosen operation is available only for a single person";
                public static final String SINGLE_TEAM_SELECTION_MESSAGE = "The chosen operation is available only for a single team";
@@ -39,8 +35,4 @@ public interface BulkEditorLables {
                public static final String ONLY_TEAM_SELECTION_MESSAGE = "Only a team can be converted into a person.";
                public static final String ONLY_FOR_BULKEDITOR_MESSAGE = "You have to choose a line in the bulkeditor to perform this operation.";
 
-
-
-       
-
-}
+}
\ No newline at end of file
diff --git a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/identificationkey/AbstractIdentificaitonKeyWizard.java b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/identificationkey/AbstractIdentificaitonKeyWizard.java
deleted file mode 100644 (file)
index 1efddce..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/**
- * 
- */
-package eu.etaxonomy.taxeditor.identificationkey;
-
-import org.eclipse.jface.wizard.Wizard;
-
-/**
- * @author n.hoffmann
- *
- */
-public class AbstractIdentificaitonKeyWizard extends Wizard {
-
-       /* (non-Javadoc)
-        * @see org.eclipse.jface.wizard.Wizard#performFinish()
-        */
-       @Override
-       public boolean performFinish() {
-               return false;
-       }
-
-}
diff --git a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/identificationkey/AbstractIdentificationKeyWizard.java b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/identificationkey/AbstractIdentificationKeyWizard.java
new file mode 100644 (file)
index 0000000..4efbfaa
--- /dev/null
@@ -0,0 +1,22 @@
+/**
+* Copyright (C) 2020 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.identificationkey;
+
+import org.eclipse.jface.wizard.Wizard;
+
+/**
+ * @author n.hoffmann
+ */
+public class AbstractIdentificationKeyWizard extends Wizard {
+
+       @Override
+       public boolean performFinish() {
+           return false;
+       }
+}
\ No newline at end of file
index 8641bd4cf301e2451a5cd8e0fa98d8fc888008aa..5faf2a36a5408238d73507af86ea6b46e66af41a 100644 (file)
@@ -6,7 +6,6 @@
  * 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.io;
 
 import java.io.File;
@@ -58,37 +57,18 @@ import eu.etaxonomy.taxeditor.store.internal.TaxeditorStorePlugin;
 import eu.etaxonomy.taxeditor.ui.dialog.ReportTextDialog;
 
 /**
- * <p>
- * ImportHandler class.
- * </p>
- *
  * @author n.hoffmann
  * @created Sep 11, 2009
- * @version 1.0
  */
 public class ImportManager extends AbstractIOManager<IImportConfigurator> implements IPostMoniteredOperationEnabled {
 
        String importSuccessMessage = "The import was successful.";
        String updateSuccessMessage = "The update was successful.";
 
-       /**
-        * @param applicationConfiguration
-        */
        private ImportManager(ICdmRepository applicationConfiguration) {
                super(applicationConfiguration);
        }
 
-       /**
-        * <p>
-        * NewInstance
-        * </p>
-        *
-        * @param applicationConfiguration
-        *            a
-        *            {@link eu.etaxonomy.cdm.api.application.CdmApplicationController}
-        *            object.
-        * @return a {@link eu.etaxonomy.taxeditor.io.ImportManager} object.
-        */
        public static ImportManager NewInstance(
                        ICdmRepository applicationConfiguration) {
                return new ImportManager(applicationConfiguration);