1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-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: 2009.04.30 at 06:20:20 PM CEST
6 //
7
8
9 package org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.query;
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
19 /**
20 * <p>Java class for InternationalStringBranchType complex type.
21 *
22 * <p>The following schema fragment specifies the expected content contained within this class.
23 *
24 * <pre>
25 * <complexType name="InternationalStringBranchType">
26 * <complexContent>
27 * <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}BranchType">
28 * <sequence>
29 * <element name="LocalizedStringFilter" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}FilterType" maxOccurs="unbounded" minOccurs="0"/>
30 * </sequence>
31 * </extension>
32 * </complexContent>
33 * </complexType>
34 * </pre>
35 *
36 *
37 */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "InternationalStringBranchType", propOrder = {
40 "localizedStringFilter"
41 })
42 public class InternationalStringBranchType
43 extends BranchType
44 {
45
46 @XmlElement(name = "LocalizedStringFilter")
47 protected List<FilterType> localizedStringFilter;
48
49 /**
50 * Gets the value of the localizedStringFilter 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 localizedStringFilter property.
57 *
58 * <p>
59 * For example, to add a new item, do as follows:
60 * <pre>
61 * getLocalizedStringFilter().add(newItem);
62 * </pre>
63 *
64 *
65 * <p>
66 * Objects of the following type(s) are allowed in the list
67 * {@link FilterType }
68 *
69 *
70 */
71 public List<FilterType> getLocalizedStringFilter() {
72 if (localizedStringFilter == null) {
73 localizedStringFilter = new ArrayList<>();
74 }
75 return this.localizedStringFilter;
76 }
77
78 }