Project

General

Profile

Download (1.09 KB) Statistics
| Branch: | Tag: | Revision:
1 9479da48 Andreas Müller
/**
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 99dac0aa Andreas Müller
import eu.etaxonomy.cdm.model.common.TimePeriod;
13 3e4e255b Andreas Müller
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
14 788ff862 Andreas Müller
15 9479da48 Andreas Müller
16 f6ee8929 m.geoffroy
 /**
17
 * Interface providing methods for nomenclatural references. 
18
 * 
19 9479da48 Andreas Müller
 * @author m.doering
20
 * @version 1.0
21
 * @created 08-Nov-2007 13:06:29
22
 */
23 3964794d Katja Luther
public interface INomenclaturalReference extends IReferenceBase{
24 9479da48 Andreas Müller
25 bef42c31 Andreas Müller
	public final String MICRO_REFERENCE_TOKEN = "@@MicroReference";
26
	
27 9479da48 Andreas Müller
	/**
28 677fa923 m.geoffroy
	 * Returns a formatted string containing the reference citation excluding
29 5fea4b1e m.geoffroy
	 * authors but including the details as used in a {@link TaxonNameBase taxon name}.
30 9479da48 Andreas Müller
	 */
31 bef42c31 Andreas Müller
	public String getNomenclaturalCitation(String  microReference);
32 9479da48 Andreas Müller
33 ef1e62cf m.geoffroy
	/**
34
	 * Returns a string representation for the year of publication / creation
35
	 * of a reference.
36
	 */
37 9479da48 Andreas Müller
	public String getYear();
38
39 99dac0aa Andreas Müller
	public void setDatePublished(TimePeriod datePublished);
40 9479da48 Andreas Müller
}