Project

General

Profile

Download (1.58 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/ 
9

    
10
package eu.etaxonomy.cdm.model.reference;
11

    
12
import eu.etaxonomy.cdm.common.DOI;
13

    
14
/**
15
 * This base interface represents all different kind of published 
16
 * {@link IReference references} which constitute a physical 
17
 * or virtual unit. A reference is a published
18
 * reference if it can be consulted by the general public.
19
 */
20
public interface IPublicationBase extends IReference {
21
	
22
	/**
23
	 * Returns the publisher string for this reference
24
	 */
25
	public String getPublisher() ;
26
	
27
	/**
28
	 * Sets the publisher string for this reference
29
	 * @param publisher
30
	 */
31
	public void setPublisher(String publisher) ;
32

    
33
	/**
34
	 * Returns the string which represents the place where this 
35
	 * reference was published
36
	 */
37
	public String getPlacePublished() ;
38
	
39
	/**
40
	 * Sets the string which represents the place where this 
41
	 * reference was published
42
	 */
43
	public void setPlacePublished(String placePublished) ;
44

    
45
	/**
46
	 * Sets the publisher and the publication place
47
	 * 
48
	 * @see #setPublisher(String)
49
	 * @see #setPlacePublished(String)
50
	 * 
51
	 * @param publisher the publisher to set
52
	 * @param placePublished the place where the publication was published
53
	 */
54
	public void setPublisher(String publisher, String placePublished);
55

    
56
	/**
57
	 * @return
58
	 */
59
	public DOI getDoi();
60

    
61
	public void setDoi(DOI doi);
62
	
63
}
(16-16/28)