View Javadoc
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.rim;
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.XmlAnyElement;
16  import javax.xml.bind.annotation.XmlAttribute;
17  import javax.xml.bind.annotation.XmlMixed;
18  import javax.xml.bind.annotation.XmlType;
19  import org.w3c.dom.Element;
20  
21  
22  /**
23   * <p>Java class for QueryExpressionType complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="QueryExpressionType">
29   *   &lt;complexContent>
30   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31   *       &lt;sequence>
32   *         &lt;any/>
33   *       &lt;/sequence>
34   *       &lt;attribute name="queryLanguage" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}referenceURI" />
35   *     &lt;/restriction>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "QueryExpressionType", propOrder = {
44      "content"
45  })
46  public class QueryExpressionType {
47  
48      @XmlMixed
49      @XmlAnyElement(lax = true)
50      protected List<Object> content;
51      @XmlAttribute(required = true)
52      protected String queryLanguage;
53  
54      /**
55       * Gets the value of the content property.
56       * 
57       * <p>
58       * This accessor method returns a reference to the live list,
59       * not a snapshot. Therefore any modification you make to the
60       * returned list will be present inside the JAXB object.
61       * This is why there is not a <CODE>set</CODE> method for the content property.
62       * 
63       * <p>
64       * For example, to add a new item, do as follows:
65       * <pre>
66       *    getContent().add(newItem);
67       * </pre>
68       * 
69       * 
70       * <p>
71       * Objects of the following type(s) are allowed in the list
72       * {@link String }
73       * {@link Object }
74       * {@link Element }
75       * 
76       * 
77       */
78      public List<Object> getContent() {
79          if (content == null) {
80              content = new ArrayList<>();
81          }
82          return this.content;
83      }
84  
85      /**
86       * Gets the value of the queryLanguage property.
87       * 
88       * @return
89       *     possible object is
90       *     {@link String }
91       *     
92       */
93      public String getQueryLanguage() {
94          return queryLanguage;
95      }
96  
97      /**
98       * Sets the value of the queryLanguage property.
99       * 
100      * @param value
101      *     allowed object is
102      *     {@link String }
103      *     
104      */
105     public void setQueryLanguage(String value) {
106         this.queryLanguage = value;
107     }
108 
109 }