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 javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for SlotType1 complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="SlotType1">
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ValueList"/>
29   *       &lt;/sequence>
30   *       &lt;attribute name="name" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}LongName" />
31   *       &lt;attribute name="slotType" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}referenceURI" />
32   *     &lt;/restriction>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "SlotType1", propOrder = {
41      "valueList"
42  })
43  public class SlotType1 {
44  
45      @XmlElement(name = "ValueList", required = true)
46      protected ValueListType valueList;
47      @XmlAttribute(required = true)
48      protected String name;
49      @XmlAttribute
50      protected String slotType;
51  
52      /**
53       * Gets the value of the valueList property.
54       * 
55       * @return
56       *     possible object is
57       *     {@link ValueListType }
58       *     
59       */
60      public ValueListType getValueList() {
61          return valueList;
62      }
63  
64      /**
65       * Sets the value of the valueList property.
66       * 
67       * @param value
68       *     allowed object is
69       *     {@link ValueListType }
70       *     
71       */
72      public void setValueList(ValueListType value) {
73          this.valueList = value;
74      }
75  
76      /**
77       * Gets the value of the name property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link String }
82       *     
83       */
84      public String getName() {
85          return name;
86      }
87  
88      /**
89       * Sets the value of the name property.
90       * 
91       * @param value
92       *     allowed object is
93       *     {@link String }
94       *     
95       */
96      public void setName(String value) {
97          this.name = value;
98      }
99  
100     /**
101      * Gets the value of the slotType property.
102      * 
103      * @return
104      *     possible object is
105      *     {@link String }
106      *     
107      */
108     public String getSlotType() {
109         return slotType;
110     }
111 
112     /**
113      * Sets the value of the slotType property.
114      * 
115      * @param value
116      *     allowed object is
117      *     {@link String }
118      *     
119      */
120     public void setSlotType(String value) {
121         this.slotType = value;
122     }
123 
124 }