performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / forms / selection / EditFromSelectionWizard.java
index 1f90651d4af430c7a6e526019f36962cd35812a6..69658fd207d7d3d29f4a2ce9aaec3d71e7062a76 100644 (file)
@@ -34,6 +34,8 @@ import eu.etaxonomy.taxeditor.section.occurrence.DerivedUnitFacadeWizardPage;
 import eu.etaxonomy.taxeditor.section.reference.ReferenceBaseWizardPage;
 
 /**
+ * <p>EditFromSelectionWizard class.</p>
+ *
  * @author n.hoffmann
  * @created Jun 1, 2010
  * @version 1.0
@@ -45,11 +47,17 @@ public class EditFromSelectionWizard extends Wizard implements SelectionListener
 
        AbstractCdmEntityWizardPage page;
        
+       /**
+        * <p>Constructor for EditFromSelectionWizard.</p>
+        *
+        * @param selectionElement a {@link eu.etaxonomy.taxeditor.forms.selection.AbstractSelectionElement} object.
+        */
        public EditFromSelectionWizard(AbstractSelectionElement selectionElement){
                this.selectionElement = selectionElement;               
                this.setWindowTitle("Edit Entity");
        }
        
+       /** {@inheritDoc} */
        @Override
        public void addPages() {
                        
@@ -81,12 +89,14 @@ public class EditFromSelectionWizard extends Wizard implements SelectionListener
        /* (non-Javadoc)
         * @see org.eclipse.jface.wizard.Wizard#performFinish()
         */
+       /** {@inheritDoc} */
        @Override
        public boolean performFinish() {
                page.dispose();
                return true;
        }
 
+       /** {@inheritDoc} */
        public void widgetSelected(SelectionEvent e) {
                WizardDialog dialog = new WizardDialog(selectionElement.getShell(), this);
                if(dialog.open() == IStatus.OK){
@@ -94,5 +104,6 @@ public class EditFromSelectionWizard extends Wizard implements SelectionListener
                }
        }
        
+       /** {@inheritDoc} */
        public void widgetDefaultSelected(SelectionEvent e) {}
 }