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.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 ClassificationSchemeQueryType complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="ClassificationSchemeQueryType">
26   *   &lt;complexContent>
27   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}RegistryObjectQueryType">
28   *       &lt;sequence>
29   *         &lt;element name="ChildrenQuery" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}ClassificationNodeQueryType" maxOccurs="unbounded" minOccurs="0"/>
30   *         &lt;element name="NodeTypeQuery" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}ClassificationNodeQueryType" minOccurs="0"/>
31   *       &lt;/sequence>
32   *     &lt;/extension>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "ClassificationSchemeQueryType", propOrder = {
41      "childrenQuery",
42      "nodeTypeQuery"
43  })
44  public class ClassificationSchemeQueryType
45      extends RegistryObjectQueryType
46  {
47  
48      @XmlElement(name = "ChildrenQuery")
49      protected List<ClassificationNodeQueryType> childrenQuery;
50      @XmlElement(name = "NodeTypeQuery")
51      protected ClassificationNodeQueryType nodeTypeQuery;
52  
53      /**
54       * Gets the value of the childrenQuery property.
55       * 
56       * <p>
57       * This accessor method returns a reference to the live list,
58       * not a snapshot. Therefore any modification you make to the
59       * returned list will be present inside the JAXB object.
60       * This is why there is not a <CODE>set</CODE> method for the childrenQuery property.
61       * 
62       * <p>
63       * For example, to add a new item, do as follows:
64       * <pre>
65       *    getChildrenQuery().add(newItem);
66       * </pre>
67       * 
68       * 
69       * <p>
70       * Objects of the following type(s) are allowed in the list
71       * {@link ClassificationNodeQueryType }
72       * 
73       * 
74       */
75      public List<ClassificationNodeQueryType> getChildrenQuery() {
76          if (childrenQuery == null) {
77              childrenQuery = new ArrayList<>();
78          }
79          return this.childrenQuery;
80      }
81  
82      /**
83       * Gets the value of the nodeTypeQuery property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link ClassificationNodeQueryType }
88       *     
89       */
90      public ClassificationNodeQueryType getNodeTypeQuery() {
91          return nodeTypeQuery;
92      }
93  
94      /**
95       * Sets the value of the nodeTypeQuery property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link ClassificationNodeQueryType }
100      *     
101      */
102     public void setNodeTypeQuery(ClassificationNodeQueryType value) {
103         this.nodeTypeQuery = value;
104     }
105 
106 }