Project

General

Profile

Download (919 Bytes) 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
/**
13
 * This interface represents books. A book is a  {@link IPrintedUnitBase printed unit}
14
 * usually published by a publishing company.
15
 * <P>
16
 * This class corresponds, according to the TDWG ontology, to the publication type
17
 * terms (from PublicationTypeTerm): <ul>
18
 * <li> "Book"
19
 * <li> "EditedBook"
20
 * </ul>
21
 */
22
public interface IBook extends IPrintedUnitBase, IWithIsbn, INomenclaturalReference{
23

    
24
	/**
25
	 * Returns this books edition
26
	 */
27
	public String getEdition();
28

    
29
	/**
30
	 * Sets this books edition
31
	 * @param edition
32
	 */
33
	public void setEdition(String edition);
34

    
35

    
36
}
(4-4/41)