(no commit message)
authorAndreas Müller <a.mueller@bgbm.org>
Tue, 13 Jul 2010 11:46:32 +0000 (11:46 +0000)
committerAndreas Müller <a.mueller@bgbm.org>
Tue, 13 Jul 2010 11:46:32 +0000 (11:46 +0000)
cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/reference/IPublicationBase.java

index a7bafd7faad500c3b8d3a6294c2138ec115cbbb1..f390ec54402d8fdd00e469a799e4f24fc242d5bc 100644 (file)
@@ -11,17 +11,39 @@ package eu.etaxonomy.cdm.model.reference;
 \r
 public interface IPublicationBase extends IReferenceBase {\r
        \r
+       /**\r
+        * Returns the publisher string for this reference\r
+        */\r
        public String getPublisher() ;\r
        \r
+       /**\r
+        * Sets the publisher string for this reference\r
+        * @param publisher\r
+        */\r
        public void setPublisher(String publisher) ;\r
+\r
+       /**\r
+        * Returns the string which represents the place where this \r
+        * reference was published\r
+        */\r
+       public String getPlacePublished() ;\r
+       \r
        /**\r
+        * Sets the string which represents the place where this \r
+        * reference was published\r
+        */\r
+       public void setPlacePublished(String placePublished) ;\r
+\r
+       /**\r
+        * Sets the publisher and the publication place\r
+        * \r
+        * @see #setPublisher(String)\r
+        * @see #setPlacePublished(String)\r
+        * \r
         * @param publisher the publisher to set\r
         * @param placePublished the place where the publication was published\r
         */\r
        public void setPublisher(String publisher, String placePublished);\r
-               \r
 \r
-       public String getPlacePublished() ;\r
-       \r
-       public void setPlacePublished(String placePublished) ;\r
+\r
 }\r