Project

General

Profile

Download (1.19 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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.model.common.IIdentifiableEntity;
13
import eu.etaxonomy.cdm.model.common.IParsable;
14
import eu.etaxonomy.cdm.model.common.TimePeriod;
15
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
16

    
17

    
18
 /**
19
 * Interface providing methods for nomenclatural references. 
20
 * 
21
 * @author m.doering
22
 * @version 1.0
23
 * @created 08-Nov-2007 13:06:29
24
 */
25
public interface INomenclaturalReference extends IReferenceBase{
26

    
27
	public final String MICRO_REFERENCE_TOKEN = "@@MicroReference";
28
	
29
	/**
30
	 * Returns a formatted string containing the reference citation excluding
31
	 * authors but including the details as used in a {@link TaxonNameBase taxon name}.
32
	 */
33
	public String getNomenclaturalCitation(String  microReference);
34

    
35
	/**
36
	 * Returns a string representation for the year of publication / creation
37
	 * of a reference.
38
	 */
39
	public String getYear();
40

    
41
	public void setDatePublished(TimePeriod datePublished);
42
}
(16-16/47)