16df815cdd1c5bd5391459354e4d82ad42ed7f4a
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / publication / Article.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.publication;
11
12
13 import org.apache.log4j.Logger;
14 import java.util.*;
15 import javax.persistence.*;
16
17 /**
18 * @author Andreas Mueller
19 * @version 1.0
20 * @created 15-Aug-2007 18:35:59
21 */
22 @Entity
23 public class Article extends PublicationBase implements NomenclaturalReference {
24 static Logger logger = Logger.getLogger(Article.class);
25
26 private String series;
27 private String volume;
28 private Journal inJournal;
29
30 public Journal getInJournal(){
31 return inJournal;
32 }
33
34 public String getSeries(){
35 return series;
36 }
37
38 public String getVolume(){
39 return volume;
40 }
41
42 /**
43 *
44 * @param newVal
45 */
46 public void setInJournal(Journal newVal){
47 inJournal = newVal;
48 }
49
50 /**
51 *
52 * @param newVal
53 */
54 public void setSeries(String newVal){
55 series = newVal;
56 }
57
58 /**
59 *
60 * @param newVal
61 */
62 public void setVolume(String newVal){
63 volume = newVal;
64 }
65
66 }