Project

General

Profile

Download (1.13 KB) 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
import eu.etaxonomy.cdm.model.agent.TeamOrPersonBase;
13

    
14
/**
15
 * This interface represents articles in a {@link IJournal journal}. An article is an independent
16
 * piece of prose written by an {@link TeamOrPersonBase author (team)} which is published among
17
 * other articles within a particular issue of a journal.
18
 * <P>
19
 * This class corresponds, according to the TDWG ontology, to the publication type
20
 * terms (from PublicationTypeTerm): <ul>
21
 * <li> "JournalArticle"
22
 * <li> "NewspaperArticle"
23
 * <li> "MagazineArticle"
24
 * </ul>
25
 */
26
public interface IArticle extends ISection, IVolumeReference, ISeriesPart{
27

    
28
	/**
29
	 * Returns this articles journal.
30
	 * @return
31
	 */
32
	public IJournal getInJournal();
33

    
34

    
35
	/**
36
	 * Sets this articles journal
37
	 * @param journal
38
	 */
39
	public void setInJournal(IJournal journal);
40

    
41
}
(2-2/41)