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 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.XmlAttribute;
16  import javax.xml.bind.annotation.XmlElement;
17  import javax.xml.bind.annotation.XmlRootElement;
18  import javax.xml.bind.annotation.XmlType;
19  
20  
21  /**
22   * <p>Java class for anonymous complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType>
28   *   &lt;complexContent>
29   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30   *       &lt;sequence>
31   *         &lt;element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Bin" maxOccurs="unbounded" minOccurs="0"/>
32   *       &lt;/sequence>
33   *       &lt;attribute name="NarrowBy" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "", propOrder = {
43      "bin"
44  })
45  @XmlRootElement(name = "SearchBinSet")
46  public class SearchBinSet {
47  
48      @XmlElement(name = "Bin")
49      protected List<Bin> bin;
50      @XmlAttribute(name = "NarrowBy", required = true)
51      protected String narrowBy;
52  
53      /**
54       * Gets the value of the bin 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 bin property.
61       * 
62       * <p>
63       * For example, to add a new item, do as follows:
64       * <pre>
65       *    getBin().add(newItem);
66       * </pre>
67       * 
68       * 
69       * <p>
70       * Objects of the following type(s) are allowed in the list
71       * {@link Bin }
72       * 
73       * 
74       */
75      public List<Bin> getBin() {
76          if (bin == null) {
77              bin = new ArrayList<Bin>();
78          }
79          return this.bin;
80      }
81  
82      /**
83       * Gets the value of the narrowBy property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link String }
88       *     
89       */
90      public String getNarrowBy() {
91          return narrowBy;
92      }
93  
94      /**
95       * Sets the value of the narrowBy property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link String }
100      *     
101      */
102     public void setNarrowBy(String value) {
103         this.narrowBy = value;
104     }
105 
106 }