all classes persistent and @Desciption imported
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / common / LanguageString.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.common;
11
12
13 import org.apache.log4j.Logger;
14 import eu.etaxonomy.cdm.model.Description;
15 import java.util.*;
16 import javax.persistence.*;
17
18 /**
19 * @author m.doering
20 * @version 1.0
21 * @created 02-Nov-2007 19:36:14
22 */
23 @Entity
24 public class LanguageString {
25 static Logger logger = Logger.getLogger(LanguageString.class);
26
27 @Description("")
28 private char text;
29 private Language language;
30
31 public Language getLanguage(){
32 return language;
33 }
34
35 /**
36 *
37 * @param language
38 */
39 public void setLanguage(Language language){
40 ;
41 }
42
43 public char getText(){
44 return text;
45 }
46
47 /**
48 *
49 * @param text
50 */
51 public void setText(char text){
52 ;
53 }
54
55 }