(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / reference / INomenclaturalReference.java
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
13 import javax.persistence.Transient;
14
15 import eu.etaxonomy.cdm.model.common.IIdentifiableEntitiy;
16 import eu.etaxonomy.cdm.model.name.TaxonNameBase;
17
18
19 /**
20 * @author m.doering
21 * @version 1.0
22 * @created 08-Nov-2007 13:06:29
23 */
24 public interface INomenclaturalReference<T extends ReferenceBase> extends IIdentifiableEntitiy<T>{
25
26 public final String MICRO_REFERENCE_TOKEN = "@@MicroReference";
27
28 /**
29 * Returns a formatted string containing the reference citation excluding
30 * authors but including the details as used in a taxon name.
31 *
32 * @see TaxonNameBase
33 */
34 @Transient
35 public String getNomenclaturalCitation(String microReference);
36
37 @Transient
38 public String getYear();
39
40 public boolean getHasProblem();
41
42 }