cleanup
authorAndreas Müller <a.mueller@bgbm.org>
Thu, 5 Jan 2023 12:47:45 +0000 (13:47 +0100)
committerAndreas Müller <a.mueller@bgbm.org>
Thu, 5 Jan 2023 12:51:15 +0000 (13:51 +0100)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/detail/CommonNameDetailElement.java

index 5119ea40a0c83ddde913c235993de8205f662794..7f2e47aed46967a0cae3fbac5d28810aa92d678e 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.ui.section.description.detail;
 
 import java.util.List;
@@ -28,11 +27,8 @@ import eu.etaxonomy.taxeditor.ui.element.TextWithLabelElement;
 import eu.etaxonomy.taxeditor.ui.selection.EntitySelectionElement;
 
 /**
- * <p>CommonNameDetailElement class.</p>
- *
  * @author n.hoffmann
  * @created Jun 10, 2010
- * @version 1.0
  */
 public class CommonNameDetailElement extends AbstractDetailedDescriptionDetailElement<CommonTaxonName> {
 
@@ -40,21 +36,14 @@ public class CommonNameDetailElement extends AbstractDetailedDescriptionDetailEl
        private EntitySelectionElement<NamedArea> selection_namedArea;
        private TextWithLabelElement commonName;
 
-
        /**
         * <p>Constructor for CommonNameDetailElement.</p>
-        *
-        * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
-        * @param formElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
-        * @param entity a {@link eu.etaxonomy.cdm.model.description.CommonTaxonName} object.
-        * @param style a int.
         */
        public CommonNameDetailElement(CdmFormFactory formFactory,
                        ICdmFormElement formElement, CommonTaxonName entity, boolean enabled, int style) {
                super(formFactory, formElement, entity, enabled, style);
        }
 
-       /** {@inheritDoc} */
        @Override
        protected void createControls(ICdmFormElement formElement,
                        CommonTaxonName entity, int style) {
@@ -78,12 +67,8 @@ public class CommonNameDetailElement extends AbstractDetailedDescriptionDetailEl
         }else{
             createFreetextModifier(formElement, entity, style);
         }
-
        }
 
-
-
-       /** {@inheritDoc} */
        @Override
        public void handleEvent(Object eventSource) {
            super.handleEvent(eventSource);
@@ -104,8 +89,5 @@ public class CommonNameDetailElement extends AbstractDetailedDescriptionDetailEl
                        selection_namedArea.setEntity(getEntity().getArea());
                        commonName.setText(getEntity().getName());
                }
-               
-               
        }
-
-}
+}
\ No newline at end of file