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.math.BigInteger;
12  import javax.xml.bind.annotation.XmlAccessType;
13  import javax.xml.bind.annotation.XmlAccessorType;
14  import javax.xml.bind.annotation.XmlElement;
15  import javax.xml.bind.annotation.XmlRootElement;
16  import javax.xml.bind.annotation.XmlSchemaType;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * <p>Java class for anonymous complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType>
27   *   &lt;complexContent>
28   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29   *       &lt;sequence>
30   *         &lt;element name="TotalExcerpts" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
31   *         &lt;element name="Excerpt" minOccurs="0">
32   *           &lt;complexType>
33   *             &lt;complexContent>
34   *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35   *                 &lt;sequence>
36   *                   &lt;element name="Checksum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
37   *                   &lt;element name="PageType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
38   *                   &lt;element name="PageNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
39   *                   &lt;element name="SequenceNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
40   *                   &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
41   *                 &lt;/sequence>
42   *               &lt;/restriction>
43   *             &lt;/complexContent>
44   *           &lt;/complexType>
45   *         &lt;/element>
46   *       &lt;/sequence>
47   *     &lt;/restriction>
48   *   &lt;/complexContent>
49   * &lt;/complexType>
50   * </pre>
51   * 
52   * 
53   */
54  @XmlAccessorType(XmlAccessType.FIELD)
55  @XmlType(name = "", propOrder = {
56      "totalExcerpts",
57      "excerpt"
58  })
59  @XmlRootElement(name = "SearchInside")
60  public class SearchInside {
61  
62      @XmlElement(name = "TotalExcerpts")
63      @XmlSchemaType(name = "nonNegativeInteger")
64      protected BigInteger totalExcerpts;
65      @XmlElement(name = "Excerpt")
66      protected SearchInside.Excerpt excerpt;
67  
68      /**
69       * Gets the value of the totalExcerpts property.
70       * 
71       * @return
72       *     possible object is
73       *     {@link BigInteger }
74       *     
75       */
76      public BigInteger getTotalExcerpts() {
77          return totalExcerpts;
78      }
79  
80      /**
81       * Sets the value of the totalExcerpts property.
82       * 
83       * @param value
84       *     allowed object is
85       *     {@link BigInteger }
86       *     
87       */
88      public void setTotalExcerpts(BigInteger value) {
89          this.totalExcerpts = value;
90      }
91  
92      /**
93       * Gets the value of the excerpt property.
94       * 
95       * @return
96       *     possible object is
97       *     {@link SearchInside.Excerpt }
98       *     
99       */
100     public SearchInside.Excerpt getExcerpt() {
101         return excerpt;
102     }
103 
104     /**
105      * Sets the value of the excerpt property.
106      * 
107      * @param value
108      *     allowed object is
109      *     {@link SearchInside.Excerpt }
110      *     
111      */
112     public void setExcerpt(SearchInside.Excerpt value) {
113         this.excerpt = value;
114     }
115 
116 
117     /**
118      * <p>Java class for anonymous complex type.
119      * 
120      * <p>The following schema fragment specifies the expected content contained within this class.
121      * 
122      * <pre>
123      * &lt;complexType>
124      *   &lt;complexContent>
125      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
126      *       &lt;sequence>
127      *         &lt;element name="Checksum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
128      *         &lt;element name="PageType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
129      *         &lt;element name="PageNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
130      *         &lt;element name="SequenceNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
131      *         &lt;element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
132      *       &lt;/sequence>
133      *     &lt;/restriction>
134      *   &lt;/complexContent>
135      * &lt;/complexType>
136      * </pre>
137      * 
138      * 
139      */
140     @XmlAccessorType(XmlAccessType.FIELD)
141     @XmlType(name = "", propOrder = {
142         "checksum",
143         "pageType",
144         "pageNumber",
145         "sequenceNumber",
146         "text"
147     })
148     public static class Excerpt {
149 
150         @XmlElement(name = "Checksum")
151         protected String checksum;
152         @XmlElement(name = "PageType")
153         protected String pageType;
154         @XmlElement(name = "PageNumber")
155         protected String pageNumber;
156         @XmlElement(name = "SequenceNumber")
157         protected String sequenceNumber;
158         @XmlElement(name = "Text")
159         protected String text;
160 
161         /**
162          * Gets the value of the checksum property.
163          * 
164          * @return
165          *     possible object is
166          *     {@link String }
167          *     
168          */
169         public String getChecksum() {
170             return checksum;
171         }
172 
173         /**
174          * Sets the value of the checksum property.
175          * 
176          * @param value
177          *     allowed object is
178          *     {@link String }
179          *     
180          */
181         public void setChecksum(String value) {
182             this.checksum = value;
183         }
184 
185         /**
186          * Gets the value of the pageType property.
187          * 
188          * @return
189          *     possible object is
190          *     {@link String }
191          *     
192          */
193         public String getPageType() {
194             return pageType;
195         }
196 
197         /**
198          * Sets the value of the pageType property.
199          * 
200          * @param value
201          *     allowed object is
202          *     {@link String }
203          *     
204          */
205         public void setPageType(String value) {
206             this.pageType = value;
207         }
208 
209         /**
210          * Gets the value of the pageNumber property.
211          * 
212          * @return
213          *     possible object is
214          *     {@link String }
215          *     
216          */
217         public String getPageNumber() {
218             return pageNumber;
219         }
220 
221         /**
222          * Sets the value of the pageNumber property.
223          * 
224          * @param value
225          *     allowed object is
226          *     {@link String }
227          *     
228          */
229         public void setPageNumber(String value) {
230             this.pageNumber = value;
231         }
232 
233         /**
234          * Gets the value of the sequenceNumber property.
235          * 
236          * @return
237          *     possible object is
238          *     {@link String }
239          *     
240          */
241         public String getSequenceNumber() {
242             return sequenceNumber;
243         }
244 
245         /**
246          * Sets the value of the sequenceNumber property.
247          * 
248          * @param value
249          *     allowed object is
250          *     {@link String }
251          *     
252          */
253         public void setSequenceNumber(String value) {
254             this.sequenceNumber = value;
255         }
256 
257         /**
258          * Gets the value of the text property.
259          * 
260          * @return
261          *     possible object is
262          *     {@link String }
263          *     
264          */
265         public String getText() {
266             return text;
267         }
268 
269         /**
270          * Sets the value of the text property.
271          * 
272          * @param value
273          *     allowed object is
274          *     {@link String }
275          *     
276          */
277         public void setText(String value) {
278             this.text = value;
279         }
280 
281     }
282 
283 }