|
Revision 5476, 0.7 kB
(checked in by a.kohlbecker, 3 years ago)
|
|
svn keyword property "Id" added
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 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.agent; |
|---|
| 11 | |
|---|
| 12 | /** |
|---|
| 13 | * Interface providing methods for nomenclatural authorship. |
|---|
| 14 | * |
|---|
| 15 | * @author a.mueller |
|---|
| 16 | * @version 1.0 |
|---|
| 17 | * @created 17-APR-2008 |
|---|
| 18 | */ |
|---|
| 19 | public interface INomenclaturalAuthor { |
|---|
| 20 | |
|---|
| 21 | /** |
|---|
| 22 | * @see TeamOrPersonBase#getNomenclaturalTitle() |
|---|
| 23 | */ |
|---|
| 24 | public String getNomenclaturalTitle(); |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | /** |
|---|
| 28 | * @see getNomenclaturalTitle() |
|---|
| 29 | */ |
|---|
| 30 | public void setNomenclaturalTitle(String nomenclaturalTitle); |
|---|
| 31 | |
|---|
| 32 | } |
|---|