View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-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.04.05 at 10:47:13 AM CEST 
6   //
7   
8   
9   package com.amazon.webservices.awsecommerceservice._2007_04_04;
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.XmlRootElement;
16  import javax.xml.bind.annotation.XmlType;
17  
18  
19  /**
20   * <p>Java class for anonymous complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType>
26   *   &lt;complexContent>
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28   *       &lt;sequence>
29   *         &lt;element name="SwatchImage" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Image" minOccurs="0"/>
30   *         &lt;element name="SmallImage" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Image" minOccurs="0"/>
31   *         &lt;element name="MediumImage" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Image" minOccurs="0"/>
32   *         &lt;element name="LargeImage" type="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Image" minOccurs="0"/>
33   *       &lt;/sequence>
34   *       &lt;attribute name="Category" type="{http://www.w3.org/2001/XMLSchema}string" />
35   *     &lt;/restriction>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "", propOrder = {
44      "swatchImage",
45      "smallImage",
46      "mediumImage",
47      "largeImage"
48  })
49  @XmlRootElement(name = "ImageSet")
50  public class ImageSet {
51  
52      @XmlElement(name = "SwatchImage")
53      protected Image swatchImage;
54      @XmlElement(name = "SmallImage")
55      protected Image smallImage;
56      @XmlElement(name = "MediumImage")
57      protected Image mediumImage;
58      @XmlElement(name = "LargeImage")
59      protected Image largeImage;
60      @XmlAttribute(name = "Category")
61      protected String category;
62  
63      /**
64       * Gets the value of the swatchImage property.
65       * 
66       * @return
67       *     possible object is
68       *     {@link Image }
69       *     
70       */
71      public Image getSwatchImage() {
72          return swatchImage;
73      }
74  
75      /**
76       * Sets the value of the swatchImage property.
77       * 
78       * @param value
79       *     allowed object is
80       *     {@link Image }
81       *     
82       */
83      public void setSwatchImage(Image value) {
84          this.swatchImage = value;
85      }
86  
87      /**
88       * Gets the value of the smallImage property.
89       * 
90       * @return
91       *     possible object is
92       *     {@link Image }
93       *     
94       */
95      public Image getSmallImage() {
96          return smallImage;
97      }
98  
99      /**
100      * Sets the value of the smallImage property.
101      * 
102      * @param value
103      *     allowed object is
104      *     {@link Image }
105      *     
106      */
107     public void setSmallImage(Image value) {
108         this.smallImage = value;
109     }
110 
111     /**
112      * Gets the value of the mediumImage property.
113      * 
114      * @return
115      *     possible object is
116      *     {@link Image }
117      *     
118      */
119     public Image getMediumImage() {
120         return mediumImage;
121     }
122 
123     /**
124      * Sets the value of the mediumImage property.
125      * 
126      * @param value
127      *     allowed object is
128      *     {@link Image }
129      *     
130      */
131     public void setMediumImage(Image value) {
132         this.mediumImage = value;
133     }
134 
135     /**
136      * Gets the value of the largeImage property.
137      * 
138      * @return
139      *     possible object is
140      *     {@link Image }
141      *     
142      */
143     public Image getLargeImage() {
144         return largeImage;
145     }
146 
147     /**
148      * Sets the value of the largeImage property.
149      * 
150      * @param value
151      *     allowed object is
152      *     {@link Image }
153      *     
154      */
155     public void setLargeImage(Image value) {
156         this.largeImage = value;
157     }
158 
159     /**
160      * Gets the value of the category property.
161      * 
162      * @return
163      *     possible object is
164      *     {@link String }
165      *     
166      */
167     public String getCategory() {
168         return category;
169     }
170 
171     /**
172      * Sets the value of the category property.
173      * 
174      * @param value
175      *     allowed object is
176      *     {@link String }
177      *     
178      */
179     public void setCategory(String value) {
180         this.category = value;
181     }
182 
183 }