add DnaMarker to Primer #4470
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / jaxb / NamespacesElement.java
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
14 import javax.xml.bind.annotation.XmlAccessType;
15 import javax.xml.bind.annotation.XmlAccessorType;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlType;
18
19
20 /**
21 * <p>Java class for Namespaces complex type.
22 */
23 @XmlAccessorType(XmlAccessType.FIELD)
24 @XmlType(name = "Namespaces", namespace="http://etaxonomy.eu/cdm/model/common/1.0", propOrder = {
25 "namespace"
26 })
27 public class NamespacesElement {
28
29 @XmlElement(name = "Namespace", namespace="http://etaxonomy.eu/cdm/model/common/1.0", required = true)
30 protected List<Namespace> namespace = new ArrayList<Namespace>();
31
32 /**
33 * Gets the value of the languageString property.
34 *
35 * <p>
36 * This accessor method returns a reference to the live list,
37 * not a snapshot. Therefore any modification you make to the
38 * returned list will be present inside the JAXB object.
39 * This is why there is not a <CODE>set</CODE> method for the languageString property.
40 *
41 * <p>
42 * For example, to add a new item, do as follows:
43 * <pre>
44 * getLanguageString().add(newItem);
45 * </pre>
46 *
47 *
48 * <p>
49 * Objects of the following type(s) are allowed in the list
50 * {@link Namespace }
51 *
52 *
53 */
54 public List<Namespace> getNamespace() {
55 return this.namespace;
56 }
57
58 }