From: Andreas Müller Date: Tue, 13 Jul 2010 11:46:32 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 3.0.3~982 X-Git-Url: https://dev.e-taxonomy.eu/gitweb/cdmlib.git/commitdiff_plain/10c8fc598fcb5da2b3a49e5498d8a7d65de3ee85?ds=sidebyside --- diff --git a/cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/reference/IPublicationBase.java b/cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/reference/IPublicationBase.java index a7bafd7faa..f390ec5440 100644 --- a/cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/reference/IPublicationBase.java +++ b/cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/reference/IPublicationBase.java @@ -11,17 +11,39 @@ package eu.etaxonomy.cdm.model.reference; public interface IPublicationBase extends IReferenceBase { + /** + * Returns the publisher string for this reference + */ public String getPublisher() ; + /** + * Sets the publisher string for this reference + * @param publisher + */ public void setPublisher(String publisher) ; + + /** + * Returns the string which represents the place where this + * reference was published + */ + public String getPlacePublished() ; + /** + * Sets the string which represents the place where this + * reference was published + */ + public void setPlacePublished(String placePublished) ; + + /** + * Sets the publisher and the publication place + * + * @see #setPublisher(String) + * @see #setPlacePublished(String) + * * @param publisher the publisher to set * @param placePublished the place where the publication was published */ public void setPublisher(String publisher, String placePublished); - - public String getPlacePublished() ; - - public void setPlacePublished(String placePublished) ; + }