(no commit message)
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / taxon / AcceptedTaxon.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.taxon;
11
12
13 import eu.etaxonomy.cdm.model.common.Media;
14 import org.apache.log4j.Logger;
15 import java.util.*;
16 import javax.persistence.*;
17
18 /**
19 * @author Andreas Mueller
20 * @version 1.0
21 * @created 15-Aug-2007 18:35:59
22 */
23 @Entity
24 public class AcceptedTaxon extends TaxonBase {
25 static Logger logger = Logger.getLogger(AcceptedTaxon.class);
26
27 private ArrayList facts;
28 private ArrayList inverseSynonymRelations;
29 private ArrayList medias;
30 private ArrayList taxonRelations;
31 private ArrayList inverseTaxonRelations;
32
33 public ArrayList getFacts(){
34 return facts;
35 }
36
37 public ArrayList getInverseSynonymRelations(){
38 return inverseSynonymRelations;
39 }
40
41 public ArrayList getInverseTaxonRelations(){
42 return inverseTaxonRelations;
43 }
44
45 public ArrayList getMedias(){
46 return medias;
47 }
48
49 public ArrayList getTaxonRelations(){
50 return taxonRelations;
51 }
52
53 /**
54 *
55 * @param newVal
56 */
57 public void setFacts(ArrayList newVal){
58 facts = newVal;
59 }
60
61 /**
62 *
63 * @param newVal
64 */
65 public void setInverseSynonymRelations(ArrayList newVal){
66 inverseSynonymRelations = newVal;
67 }
68
69 /**
70 *
71 * @param newVal
72 */
73 public void setInverseTaxonRelations(ArrayList newVal){
74 inverseTaxonRelations = newVal;
75 }
76
77 /**
78 *
79 * @param newVal
80 */
81 public void setMedias(ArrayList newVal){
82 medias = newVal;
83 }
84
85 /**
86 *
87 * @param newVal
88 */
89 public void setTaxonRelations(ArrayList newVal){
90 taxonRelations = newVal;
91 }
92
93 }