Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
492 blopes 1
//
2
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementa��o de Refer�ncia (JAXB) de Bind XML, v2.2.8-b130911.1802 
3
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Todas as modifica��es neste arquivo ser�o perdidas ap�s a recompila��o do esquema de origem. 
5
// Gerado em: 2017.05.30 �s 08:31:54 PM GFT 
6
//
7
 
8
 
9
package nfce;
10
 
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlSchemaType;
15
import javax.xml.bind.annotation.XmlType;
16
 
17
 
18
/**
19
 * Tipo Dados do Endere�o  // 24/10/08 - tamanho m�nimo
20
 *
21
 * <p>Classe Java de TEndereco complex type.
22
 *
23
 * <p>O seguinte fragmento do esquema especifica o conte�do esperado contido dentro desta classe.
24
 *
25
 * <pre>
26
 * &lt;complexType name="TEndereco">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="xLgr">
31
 *           &lt;simpleType>
32
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
33
 *               &lt;maxLength value="60"/>
34
 *               &lt;minLength value="2"/>
35
 *             &lt;/restriction>
36
 *           &lt;/simpleType>
37
 *         &lt;/element>
38
 *         &lt;element name="nro">
39
 *           &lt;simpleType>
40
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
41
 *               &lt;maxLength value="60"/>
42
 *               &lt;minLength value="1"/>
43
 *             &lt;/restriction>
44
 *           &lt;/simpleType>
45
 *         &lt;/element>
46
 *         &lt;element name="xCpl" minOccurs="0">
47
 *           &lt;simpleType>
48
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
49
 *               &lt;maxLength value="60"/>
50
 *               &lt;minLength value="1"/>
51
 *             &lt;/restriction>
52
 *           &lt;/simpleType>
53
 *         &lt;/element>
54
 *         &lt;element name="xBairro">
55
 *           &lt;simpleType>
56
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
57
 *               &lt;maxLength value="60"/>
58
 *               &lt;minLength value="2"/>
59
 *             &lt;/restriction>
60
 *           &lt;/simpleType>
61
 *         &lt;/element>
62
 *         &lt;element name="cMun" type="{http://www.portalfiscal.inf.br/nfe}TCodMunIBGE"/>
63
 *         &lt;element name="xMun">
64
 *           &lt;simpleType>
65
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
66
 *               &lt;maxLength value="60"/>
67
 *               &lt;minLength value="2"/>
68
 *             &lt;/restriction>
69
 *           &lt;/simpleType>
70
 *         &lt;/element>
71
 *         &lt;element name="UF" type="{http://www.portalfiscal.inf.br/nfe}TUf"/>
72
 *         &lt;element name="CEP" minOccurs="0">
73
 *           &lt;simpleType>
74
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
75
 *               &lt;whiteSpace value="preserve"/>
76
 *               &lt;pattern value="[0-9]{8}"/>
77
 *             &lt;/restriction>
78
 *           &lt;/simpleType>
79
 *         &lt;/element>
80
 *         &lt;element name="cPais">
81
 *           &lt;simpleType>
82
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
83
 *               &lt;whiteSpace value="preserve"/>
84
 *               &lt;pattern value="[0-9]{3,4}"/>
85
 *             &lt;/restriction>
86
 *           &lt;/simpleType>
87
 *         &lt;/element>
88
 *         &lt;element name="xPais" minOccurs="0">
89
 *           &lt;simpleType>
90
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
91
 *               &lt;maxLength value="60"/>
92
 *               &lt;minLength value="2"/>
93
 *             &lt;/restriction>
94
 *           &lt;/simpleType>
95
 *         &lt;/element>
96
 *         &lt;element name="fone" minOccurs="0">
97
 *           &lt;simpleType>
98
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
99
 *               &lt;whiteSpace value="preserve"/>
100
 *               &lt;pattern value="[0-9]{6,14}"/>
101
 *             &lt;/restriction>
102
 *           &lt;/simpleType>
103
 *         &lt;/element>
104
 *       &lt;/sequence>
105
 *     &lt;/restriction>
106
 *   &lt;/complexContent>
107
 * &lt;/complexType>
108
 * </pre>
109
 *
110
 *
111
 */
112
@XmlAccessorType(XmlAccessType.FIELD)
113
@XmlType(name = "TEndereco", propOrder = {
114
    "xLgr",
115
    "nro",
116
    "xCpl",
117
    "xBairro",
118
    "cMun",
119
    "xMun",
120
    "uf",
121
    "cep",
122
    "cPais",
123
    "xPais",
124
    "fone"
125
})
126
public class TEndereco {
127
 
128
    @XmlElement(required = true)
129
    protected String xLgr;
130
    @XmlElement(required = true)
131
    protected String nro;
132
    protected String xCpl;
133
    @XmlElement(required = true)
134
    protected String xBairro;
135
    @XmlElement(required = true)
136
    protected String cMun;
137
    @XmlElement(required = true)
138
    protected String xMun;
139
    @XmlElement(name = "UF", required = true)
140
    @XmlSchemaType(name = "string")
141
    protected TUf uf;
142
    @XmlElement(name = "CEP")
143
    protected String cep;
144
    @XmlElement(required = true)
145
    protected String cPais;
146
    protected String xPais;
147
    protected String fone;
148
 
149
    /**
150
     * Obt�m o valor da propriedade xLgr.
151
     *
152
     * @return
153
     *     possible object is
154
     *     {@link String }
155
     *    
156
     */
157
    public String getXLgr() {
158
        return xLgr;
159
    }
160
 
161
    /**
162
     * Define o valor da propriedade xLgr.
163
     *
164
     * @param value
165
     *     allowed object is
166
     *     {@link String }
167
     *    
168
     */
169
    public void setXLgr(String value) {
170
        this.xLgr = value;
171
    }
172
 
173
    /**
174
     * Obt�m o valor da propriedade nro.
175
     *
176
     * @return
177
     *     possible object is
178
     *     {@link String }
179
     *    
180
     */
181
    public String getNro() {
182
        return nro;
183
    }
184
 
185
    /**
186
     * Define o valor da propriedade nro.
187
     *
188
     * @param value
189
     *     allowed object is
190
     *     {@link String }
191
     *    
192
     */
193
    public void setNro(String value) {
194
        this.nro = value;
195
    }
196
 
197
    /**
198
     * Obt�m o valor da propriedade xCpl.
199
     *
200
     * @return
201
     *     possible object is
202
     *     {@link String }
203
     *    
204
     */
205
    public String getXCpl() {
206
        return xCpl;
207
    }
208
 
209
    /**
210
     * Define o valor da propriedade xCpl.
211
     *
212
     * @param value
213
     *     allowed object is
214
     *     {@link String }
215
     *    
216
     */
217
    public void setXCpl(String value) {
218
        this.xCpl = value;
219
    }
220
 
221
    /**
222
     * Obt�m o valor da propriedade xBairro.
223
     *
224
     * @return
225
     *     possible object is
226
     *     {@link String }
227
     *    
228
     */
229
    public String getXBairro() {
230
        return xBairro;
231
    }
232
 
233
    /**
234
     * Define o valor da propriedade xBairro.
235
     *
236
     * @param value
237
     *     allowed object is
238
     *     {@link String }
239
     *    
240
     */
241
    public void setXBairro(String value) {
242
        this.xBairro = value;
243
    }
244
 
245
    /**
246
     * Obt�m o valor da propriedade cMun.
247
     *
248
     * @return
249
     *     possible object is
250
     *     {@link String }
251
     *    
252
     */
253
    public String getCMun() {
254
        return cMun;
255
    }
256
 
257
    /**
258
     * Define o valor da propriedade cMun.
259
     *
260
     * @param value
261
     *     allowed object is
262
     *     {@link String }
263
     *    
264
     */
265
    public void setCMun(String value) {
266
        this.cMun = value;
267
    }
268
 
269
    /**
270
     * Obt�m o valor da propriedade xMun.
271
     *
272
     * @return
273
     *     possible object is
274
     *     {@link String }
275
     *    
276
     */
277
    public String getXMun() {
278
        return xMun;
279
    }
280
 
281
    /**
282
     * Define o valor da propriedade xMun.
283
     *
284
     * @param value
285
     *     allowed object is
286
     *     {@link String }
287
     *    
288
     */
289
    public void setXMun(String value) {
290
        this.xMun = value;
291
    }
292
 
293
    /**
294
     * Obt�m o valor da propriedade uf.
295
     *
296
     * @return
297
     *     possible object is
298
     *     {@link TUf }
299
     *    
300
     */
301
    public TUf getUF() {
302
        return uf;
303
    }
304
 
305
    /**
306
     * Define o valor da propriedade uf.
307
     *
308
     * @param value
309
     *     allowed object is
310
     *     {@link TUf }
311
     *    
312
     */
313
    public void setUF(TUf value) {
314
        this.uf = value;
315
    }
316
 
317
    /**
318
     * Obt�m o valor da propriedade cep.
319
     *
320
     * @return
321
     *     possible object is
322
     *     {@link String }
323
     *    
324
     */
325
    public String getCEP() {
326
        return cep;
327
    }
328
 
329
    /**
330
     * Define o valor da propriedade cep.
331
     *
332
     * @param value
333
     *     allowed object is
334
     *     {@link String }
335
     *    
336
     */
337
    public void setCEP(String value) {
338
        this.cep = value;
339
    }
340
 
341
    /**
342
     * Obt�m o valor da propriedade cPais.
343
     *
344
     * @return
345
     *     possible object is
346
     *     {@link String }
347
     *    
348
     */
349
    public String getCPais() {
350
        return cPais;
351
    }
352
 
353
    /**
354
     * Define o valor da propriedade cPais.
355
     *
356
     * @param value
357
     *     allowed object is
358
     *     {@link String }
359
     *    
360
     */
361
    public void setCPais(String value) {
362
        this.cPais = value;
363
    }
364
 
365
    /**
366
     * Obt�m o valor da propriedade xPais.
367
     *
368
     * @return
369
     *     possible object is
370
     *     {@link String }
371
     *    
372
     */
373
    public String getXPais() {
374
        return xPais;
375
    }
376
 
377
    /**
378
     * Define o valor da propriedade xPais.
379
     *
380
     * @param value
381
     *     allowed object is
382
     *     {@link String }
383
     *    
384
     */
385
    public void setXPais(String value) {
386
        this.xPais = value;
387
    }
388
 
389
    /**
390
     * Obt�m o valor da propriedade fone.
391
     *
392
     * @return
393
     *     possible object is
394
     *     {@link String }
395
     *    
396
     */
397
    public String getFone() {
398
        return fone;
399
    }
400
 
401
    /**
402
     * Define o valor da propriedade fone.
403
     *
404
     * @param value
405
     *     allowed object is
406
     *     {@link String }
407
     *    
408
     */
409
    public void setFone(String value) {
410
        this.fone = value;
411
    }
412
 
413
}