Trim code
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / AbstractImportWizard.java
index e4623afb1d9a788d02750073cc2856f6572150c8..d84ad8dda92273a4827ca595b0c3d847fdae438a 100644 (file)
@@ -25,8 +25,6 @@ import eu.etaxonomy.cdm.io.common.IImportConfigurator;
 import eu.etaxonomy.cdm.io.common.IIoConfigurator;
 
 /**
- * <p>Abstract AbstractImportWizard class.</p>
- *
  * @author n.hoffmann
  * @created 24.06.2009
  * @version 1.0
@@ -42,10 +40,6 @@ public abstract class AbstractImportWizard<CONFIG extends IIoConfigurator> exten
 
        private IStructuredSelection selection;
 
-
-       /* (non-Javadoc)
-        * @see org.eclipse.jface.wizard.Wizard#addPages()
-        */
        /** {@inheritDoc} */
        @Override
        public void addPages() {
@@ -60,9 +54,6 @@ public abstract class AbstractImportWizard<CONFIG extends IIoConfigurator> exten
 
        }
 
-       /* (non-Javadoc)
-        * @see org.eclipse.jface.wizard.Wizard#setContainer(org.eclipse.jface.wizard.IWizardContainer)
-        */
        @Override
        public void setContainer(IWizardContainer wizardContainer) {
                if(existUnsavedEditors()){
@@ -74,9 +65,6 @@ public abstract class AbstractImportWizard<CONFIG extends IIoConfigurator> exten
                }
        }
 
-       /* (non-Javadoc)
-        * @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
-        */
        @Override
        public void init(IWorkbench workbench, IStructuredSelection selection) {
                this.setWorkbench(workbench);
@@ -96,45 +84,25 @@ public abstract class AbstractImportWizard<CONFIG extends IIoConfigurator> exten
                return false;
        }
 
-       /* (non-Javadoc)
-        * @see org.eclipse.jface.wizard.Wizard#canFinish()
-        */
        @Override
        public boolean canFinish() {
            return !existUnsavedEditors() && super.canFinish();
        }
 
-       /**
-        * <p>getConfigurator</p>
-        *
-        * @return a CONFIG object.
-        */
        public abstract CONFIG getConfigurator();
 
-       /**
-        * @param selection the selection to set
-        */
        public void setSelection(IStructuredSelection selection) {
                this.selection = selection;
        }
 
-       /**
-        * @return the selection
-        */
        public IStructuredSelection getSelection() {
                return selection;
        }
 
-       /**
-        * @param workbench the workbench to set
-        */
        public void setWorkbench(IWorkbench workbench) {
                this.workbench = workbench;
        }
 
-       /**
-        * @return the workbench
-        */
        public IWorkbench getWorkbench() {
                return workbench;
        }