Marshall TextData/MultiLanguageText for one entry in Map
[cdmlib.git] / cdmlib-model / 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 import javax.persistence.Entity;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlRootElement;
16 import javax.xml.bind.annotation.XmlType;
17
18 import org.apache.log4j.Logger;
19
20 /**
21 * @author m.doering
22 * @version 1.0
23 * @created 08-Nov-2007 13:06:32
24 */
25 @XmlAccessorType(XmlAccessType.FIELD)
26 @XmlType(name = "LanguageString")
27 @XmlRootElement(name = "LanguageString")
28 @Entity
29 public class LanguageString extends LanguageStringBase{
30 static Logger logger = Logger.getLogger(LanguageString.class);
31
32 public static LanguageString NewInstance(String text, Language language){
33 return new LanguageString(text, language);
34 }
35
36 protected LanguageString() {
37 super();
38 }
39
40 protected LanguageString(String text, Language language) {
41 super(text, language);
42 }
43
44 /* (non-Javadoc)
45 * @see eu.etaxonomy.cdm.model.common.CdmBase#toString()
46 */
47 @Override
48 public String toString() {
49 if (text == null){
50 return super.toString() + "null";
51 }else{
52 String languagePart = "";
53 if (this.language != null){
54 languagePart = "(" + this.language.toString() + ")";
55 }
56 if (text.length() > 20){
57 return text.substring(0, 20) + "..." + languagePart;
58 }else{
59 return text + languagePart;
60 }
61 }
62 }
63
64
65
66 }