performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / datasource / wizard / CdmDataSourceTypeSelectionWizardPage.java
index 325f2d8ed3a00d3b7005a988d74eed0615b8628e..f2782b80aaa6ab14963012337178958fbb5117be 100644 (file)
@@ -33,6 +33,8 @@ import eu.etaxonomy.cdm.model.name.NomenclaturalCode;
 import eu.etaxonomy.taxeditor.datasource.CdmDataSourceRepository;
 
 /**
+ * <p>CdmDataSourceTypeSelectionWizardPage class.</p>
+ *
  * @author n.hoffmann
  * @created 18.05.2009
  * @version 1.0
@@ -60,6 +62,11 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
 
        private CdmDataSourceCredentialsWizardPage credentialsWizardPage;
        
+       /**
+        * <p>Constructor for CdmDataSourceTypeSelectionWizardPage.</p>
+        *
+        * @param dataSource a {@link eu.etaxonomy.cdm.database.ICdmDataSource} object.
+        */
        public CdmDataSourceTypeSelectionWizardPage(ICdmDataSource dataSource) {
                super("DataSourceWizardPage");
                
@@ -73,6 +80,7 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        /* (non-Javadoc)
         * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
         */
+       /** {@inheritDoc} */
        public void createControl(Composite parent) {
 
                setPageComplete(false);
@@ -173,6 +181,7 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        /* (non-Javadoc)
         * @see org.eclipse.jface.wizard.WizardPage#getNextPage()
         */
+       /** {@inheritDoc} */
        @Override
        public IWizardPage getNextPage() {
                return nextPage;
@@ -181,6 +190,7 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        /* (non-Javadoc)
         * @see org.eclipse.swt.events.ModifyListener#modifyText(org.eclipse.swt.events.ModifyEvent)
         */
+       /** {@inheritDoc} */
        public void modifyText(ModifyEvent e) {
                String name = datasourceNameText.getText();
                
@@ -201,6 +211,9 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        /* (non-Javadoc)
         * @see org.eclipse.jface.wizard.WizardPage#canFlipToNextPage()
         */
+       /**
+        * <p>checkPageComplete</p>
+        */
        public void checkPageComplete() {
                boolean complete = isDataBaseTypeSelected();
                complete &= isDataSourceNameSet();
@@ -209,13 +222,17 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        }
        
        /**
-        * @return
+        * <p>Getter for the field <code>dataSourceName</code>.</p>
+        *
+        * @return a {@link java.lang.String} object.
         */
        public String getDataSourceName() {
                return dataSourceName;
        }
 
        /**
+        * <p>Getter for the field <code>credentialsWizardPage</code>.</p>
+        *
         * @return the credentialsWizardPage
         */
        public CdmDataSourceCredentialsWizardPage getCredentialsWizardPage() {
@@ -223,6 +240,8 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        }
 
        /**
+        * <p>isDataBaseTypeSelected</p>
+        *
         * @return the dataBaseTypeSelected
         */
        public boolean isDataBaseTypeSelected() {
@@ -230,6 +249,8 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        }
 
        /**
+        * <p>Setter for the field <code>dataBaseTypeSelected</code>.</p>
+        *
         * @param dataBaseTypeSelected the dataBaseTypeSelected to set
         */
        public void setDataBaseTypeSelected(boolean dataBaseTypeSelected) {
@@ -237,6 +258,8 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        }
 
        /**
+        * <p>isDataSourceNameSet</p>
+        *
         * @return the dataSourceNameSet
         */
        public boolean isDataSourceNameSet() {
@@ -244,6 +267,8 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        }
 
        /**
+        * <p>Setter for the field <code>dataSourceNameSet</code>.</p>
+        *
         * @param dataSourceNameSet the dataSourceNameSet to set
         */
        public void setDataSourceNameSet(boolean dataSourceNameSet) {
@@ -251,6 +276,8 @@ public class CdmDataSourceTypeSelectionWizardPage extends WizardPage implements
        }
 
        /**
+        * <p>Getter for the field <code>nomenclaturalCode</code>.</p>
+        *
         * @return the nomenclaturalCode
         */
        public NomenclaturalCode getNomenclaturalCode() {