(no commit message)
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / common / Language.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 * list of languages according to current internet best practices as given by IANA
20 * or ISO codes. http://www.ietf.org/rfc/rfc4646.txt http://www.loc.
21 * gov/standards/iso639-2/php/English_list.php
22 * @author m.doering
23 * @version 1.0
24 * @created 08-Nov-2007 13:06:31
25 */
26 @Entity
27 public class Language extends DefinedTermBase {
28 static Logger logger = Logger.getLogger(Language.class);
29
30 public static final Language CHINESE(){
31 return null;
32 }
33
34 public static final Language ENGLISH(){
35 return null;
36 }
37
38 public static final Language SPANISH(){
39 return null;
40 }
41
42 public static final Language HINDI(){
43 return null;
44 }
45
46 public static final Language ARABIC(){
47 return null;
48 }
49
50 public static final Language BENGALI(){
51 return null;
52 }
53
54 public static final Language RUSSIAN(){
55 return null;
56 }
57
58 public static final Language PORTUGUESE(){
59 return null;
60 }
61
62 public static final Language JAPANESE(){
63 return null;
64 }
65
66 public static final Language GERMAN(){
67 return null;
68 }
69
70 }