Project

General

Profile

Download (2.41 KB) Statistics
| Branch: | Tag: | Revision:
1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2007.12.21 at 08:13:35 PM GMT 
6
//
7

    
8

    
9
package eu.etaxonomy.cdm.jaxb;
10

    
11
import java.util.ArrayList;
12
import java.util.List;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlElement;
16
import javax.xml.bind.annotation.XmlType;
17

    
18
import eu.etaxonomy.cdm.model.common.LanguageString;
19

    
20

    
21
/**
22
 * <p>Java class for MultilanguageText complex type.
23
 * 
24
 * <p>The following schema fragment specifies the expected content contained within this class.
25
 * 
26
 * <pre>
27
 * &lt;complexType name="MultilanguageText">
28
 *   &lt;complexContent>
29
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30
 *       &lt;sequence>
31
 *         &lt;element ref="{http://etaxonomy.eu/cdm/model/common/1.0}LanguageString" maxOccurs="unbounded"/>
32
 *       &lt;/sequence>
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 * 
38
 * 
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "MultilanguageText", namespace="http://etaxonomy.eu/cdm/model/common/1.0", propOrder = {
42
    "languageString"
43
})
44
public class MultilanguageTextElement {
45

    
46
    @XmlElement(name = "LanguageString", namespace="http://etaxonomy.eu/cdm/model/common/1.0", required = true)
47
    protected List<LanguageString> languageString = new ArrayList<LanguageString>();
48

    
49
    /**
50
     * Gets the value of the languageString property.
51
     * 
52
     * <p>
53
     * This accessor method returns a reference to the live list,
54
     * not a snapshot. Therefore any modification you make to the
55
     * returned list will be present inside the JAXB object.
56
     * This is why there is not a <CODE>set</CODE> method for the languageString property.
57
     * 
58
     * <p>
59
     * For example, to add a new item, do as follows:
60
     * <pre>
61
     *    getLanguageString().add(newItem);
62
     * </pre>
63
     * 
64
     * 
65
     * <p>
66
     * Objects of the following type(s) are allowed in the list
67
     * {@link LanguageString }
68
     * 
69
     * 
70
     */
71
    public List<LanguageString> getLanguageString() {
72
        return this.languageString;
73
    }
74

    
75
}
(10-10/16)