Major update to the latest CDM definition 2.Nov.2007
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / molecular / Locus.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 etaxonomy.cdm.model.molecular;
11
12
13 import etaxonomy.cdm.model.common.VersionableEntity;
14 import org.apache.log4j.Logger;
15
16 /**
17 * The region name of a DNA string. E.g. 18S, COX, etc.
18 * @author m.doering
19 * @version 1.0
20 * @created 02-Nov-2007 18:14:58
21 */
22 public class Locus extends VersionableEntity {
23 static Logger logger = Logger.getLogger(Locus.class);
24
25 @Description("")
26 private String name;
27 @Description("")
28 private String description;
29
30 public String getName(){
31 return name;
32 }
33
34 /**
35 *
36 * @param newVal
37 */
38 public void setName(String newVal){
39 name = newVal;
40 }
41
42 public String getDescription(){
43 return description;
44 }
45
46 /**
47 *
48 * @param newVal
49 */
50 public void setDescription(String newVal){
51 description = newVal;
52 }
53
54 }