performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / section / occurrence / CollectingAreasDetailSection.java
index ea4aa999000ccaf89b87b9dcb84dd1591e8b058a..8978356e4ec3e375a2e2da2245f7433bf0306221 100644 (file)
@@ -20,6 +20,8 @@ import eu.etaxonomy.taxeditor.forms.ICdmFormElement;
 import eu.etaxonomy.taxeditor.section.AbstractEntityCollectionSection;
 
 /**
+ * <p>CollectingAreasDetailSection class.</p>
+ *
  * @author n.hoffmann
  * @created Oct 14, 2010
  * @version 1.0
@@ -28,11 +30,12 @@ public class CollectingAreasDetailSection extends
                AbstractEntityCollectionSection<DerivedUnitFacade, NamedArea> {
 
        /**
-        * @param formFactory
-        * @param conversation
-        * @param parentElement
-        * @param title
-        * @param style
+        * <p>Constructor for CollectingAreasDetailSection.</p>
+        *
+        * @param formFactory a {@link eu.etaxonomy.taxeditor.forms.CdmFormFactory} object.
+        * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
+        * @param parentElement a {@link eu.etaxonomy.taxeditor.forms.ICdmFormElement} object.
+        * @param style a int.
         */
        public CollectingAreasDetailSection(CdmFormFactory formFactory,
                        ConversationHolder conversation, ICdmFormElement parentElement, int style) {
@@ -42,6 +45,7 @@ public class CollectingAreasDetailSection extends
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.section.AbstractEntityCollectionSection#getCollection(java.lang.Object)
         */
+       /** {@inheritDoc} */
        @Override
        public Collection<NamedArea> getCollection(DerivedUnitFacade entity) {
                return entity.getCollectingAreas();
@@ -50,6 +54,7 @@ public class CollectingAreasDetailSection extends
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.section.AbstractEntityCollectionSection#createNewElement()
         */
+       /** {@inheritDoc} */
        @Override
        public NamedArea createNewElement() {
                return NamedArea.NewInstance();
@@ -58,6 +63,7 @@ public class CollectingAreasDetailSection extends
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.section.AbstractEntityCollectionSection#addElement(eu.etaxonomy.cdm.model.common.IVersionableEntity)
         */
+       /** {@inheritDoc} */
        @Override
        public void addElement(NamedArea element) {
                getEntity().addCollectingArea(element);
@@ -66,6 +72,7 @@ public class CollectingAreasDetailSection extends
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.section.AbstractEntityCollectionSection#removeElement(eu.etaxonomy.cdm.model.common.IVersionableEntity)
         */
+       /** {@inheritDoc} */
        @Override
        public void removeElement(NamedArea element) {
                getEntity().removeCollectingArea(element);
@@ -74,6 +81,7 @@ public class CollectingAreasDetailSection extends
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.section.AbstractEntityCollectionSection#getEmptyString()
         */
+       /** {@inheritDoc} */
        @Override
        public String getEmptyString() {
                return "No collecting areas yet.";
@@ -82,6 +90,7 @@ public class CollectingAreasDetailSection extends
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.section.AbstractEntityCollectionSection#getTooltipString()
         */
+       /** {@inheritDoc} */
        @Override
        protected String getTooltipString() {
                return "Add a collecting area";