cleanup
authorAndreas Müller <a.mueller@bgbm.org>
Mon, 10 May 2021 08:24:06 +0000 (10:24 +0200)
committerAndreas Müller <a.mueller@bgbm.org>
Mon, 10 May 2021 08:28:24 +0000 (10:28 +0200)
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/dto/DistributionInfoDTO.java

index 8ce43d778fd4aa78bd4795b05c3dbf462d806715..de75d7f698b296c441361d8731910b1cc68cfb30 100644 (file)
@@ -16,65 +16,40 @@ import eu.etaxonomy.cdm.model.description.Distribution;
 /**
  * @author a.kohlbecker
  * @since Jan 29, 2014
- *
  */
 public class DistributionInfoDTO {
 
-
     private CondensedDistribution condensedDistribution = null;
     private DistributionTree tree = null;
     private String mapUriParams = null;
     private Set<Distribution> elements = null;
 
 
-    /**
-     * @param condensedDistribution the condensedDistribution to set
-     */
+    public CondensedDistribution getCondensedDistribution() {
+        return condensedDistribution;
+    }
     public void setCondensedDistribution(CondensedDistribution condensedDistribution) {
         this.condensedDistribution = condensedDistribution;
     }
-    /**
-     * @param tree the tree to set
-     */
-    public void setTree(DistributionTree tree) {
-        this.tree = tree;
-    }
-    /**
-     * @param mapUriParams the mapUriParams to set
-     */
-    public void setMapUriParams(String mapUriParams) {
-        this.mapUriParams = mapUriParams;
-    }
-    /**
-     * @param elements the elements to set
-     */
-    public void setElements(Set<Distribution> elements) {
-        this.elements = elements;
-    }
 
-    /**
-     * @return the condensedDistribution
-     */
-    public CondensedDistribution getCondensedDistribution() {
-        return condensedDistribution;
-    }
-    /**
-     * @return the tree
-     */
     public DistributionTree getTree() {
         return tree;
     }
-    /**
-     * @return the mapUriParams
-     */
+    public void setTree(DistributionTree tree) {
+        this.tree = tree;
+    }
+
     public String getMapUriParams() {
         return mapUriParams;
     }
-    /**
-     * @return the elements
-     */
+    public void setMapUriParams(String mapUriParams) {
+        this.mapUriParams = mapUriParams;
+    }
+
     public Set<Distribution> getElements() {
         return elements;
+    }    public void setElements(Set<Distribution> elements) {
+        this.elements = elements;
     }
 
     public enum InfoPart{
@@ -83,6 +58,4 @@ public class DistributionInfoDTO {
         mapUriParams,
         elements,
     }
-
-
-}
+}
\ No newline at end of file