performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-printpublisher / src / main / java / eu / etaxonomy / taxeditor / printpublisher / wizard / SelectFeatureTreeWizardPage.java
index 3b0871614136a804daaaa3b72639050d89c00dc2..a41472a1d8c11b20180839565170480a636a6615 100644 (file)
@@ -37,6 +37,8 @@ import eu.etaxonomy.cdm.print.XMLHelper;
 import eu.etaxonomy.taxeditor.featuretree.FeatureTreeEditorWizard;
 
 /**
+ * <p>SelectFeatureTreeWizardPage class.</p>
+ *
  * @author n.hoffmann
  * @created Aug 6, 2010
  * @version 1.0
@@ -46,6 +48,11 @@ public class SelectFeatureTreeWizardPage extends AbstractPublishWizardPage imple
        private ListViewer viewer;
        private IStructuredSelection selection;
 
+       /**
+        * <p>Constructor for SelectFeatureTreeWizardPage.</p>
+        *
+        * @param pageName a {@link java.lang.String} object.
+        */
        protected SelectFeatureTreeWizardPage(String pageName) {
                super(pageName);
                setTitle("Select Feature Tree");
@@ -54,6 +61,7 @@ public class SelectFeatureTreeWizardPage extends AbstractPublishWizardPage imple
        /* (non-Javadoc)
         * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
         */
+       /** {@inheritDoc} */
        @Override
        public void createControl(Composite parent) {
                setPageComplete(false);
@@ -94,6 +102,7 @@ public class SelectFeatureTreeWizardPage extends AbstractPublishWizardPage imple
                setControl(composite);
        }
 
+       /** {@inheritDoc} */
        @Override
        public void selectionChanged(SelectionChangedEvent event) {
                selection = (IStructuredSelection) event.getSelection();
@@ -112,6 +121,7 @@ public class SelectFeatureTreeWizardPage extends AbstractPublishWizardPage imple
                }
        }
        
+       /** {@inheritDoc} */
        @Override
        public boolean canFlipToNextPage() {
                return (isPageComplete() && selection.size() == 1);