(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / description / Sex.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.description;
11
12
13 import org.apache.log4j.Logger;
14
15 import eu.etaxonomy.cdm.model.common.TermVocabulary;
16
17 import java.util.*;
18 import javax.persistence.*;
19
20 /**
21 * @author m.doering
22 * @version 1.0
23 * @created 08-Nov-2007 13:06:52
24 */
25 @Entity
26 public class Sex extends Scope {
27 static Logger logger = Logger.getLogger(Sex.class);
28
29 public Sex() {
30 super();
31 // TODO Auto-generated constructor stub
32 }
33
34 public Sex(String term, String label) {
35 super(term, label);
36 // TODO Auto-generated constructor stub
37 }
38
39 }