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 do Emitente  // 24/10/08 - desmembrado / tamanho m�nimo
20
 *
21
 * <p>Classe Java de TEnderEmi 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="TEnderEmi">
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}TUfEmi"/>
72
 *         &lt;element name="CEP">
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" minOccurs="0">
81
 *           &lt;simpleType>
82
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
83
 *               &lt;enumeration value="1058"/>
84
 *             &lt;/restriction>
85
 *           &lt;/simpleType>
86
 *         &lt;/element>
87
 *         &lt;element name="xPais" minOccurs="0">
88
 *           &lt;simpleType>
89
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
90
 *               &lt;enumeration value="Brasil"/>
91
 *               &lt;enumeration value="BRASIL"/>
92
 *             &lt;/restriction>
93
 *           &lt;/simpleType>
94
 *         &lt;/element>
95
 *         &lt;element name="fone" minOccurs="0">
96
 *           &lt;simpleType>
97
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
98
 *               &lt;whiteSpace value="preserve"/>
99
 *               &lt;pattern value="[0-9]{6,14}"/>
100
 *             &lt;/restriction>
101
 *           &lt;/simpleType>
102
 *         &lt;/element>
103
 *       &lt;/sequence>
104
 *     &lt;/restriction>
105
 *   &lt;/complexContent>
106
 * &lt;/complexType>
107
 * </pre>
108
 *
109
 *
110
 */
111
@XmlAccessorType(XmlAccessType.FIELD)
112
@XmlType(name = "TEnderEmi", propOrder = {
113
    "xLgr",
114
    "nro",
115
    "xCpl",
116
    "xBairro",
117
    "cMun",
118
    "xMun",
119
    "uf",
120
    "cep",
121
    "cPais",
122
    "xPais",
123
    "fone"
124
})
125
public class TEnderEmi {
126
 
127
    @XmlElement(required = true)
128
    protected String xLgr;
129
    @XmlElement(required = true)
130
    protected String nro;
131
    protected String xCpl;
132
    @XmlElement(required = true)
133
    protected String xBairro;
134
    @XmlElement(required = true)
135
    protected String cMun;
136
    @XmlElement(required = true)
137
    protected String xMun;
138
    @XmlElement(name = "UF", required = true)
139
    @XmlSchemaType(name = "string")
140
    protected TUfEmi uf;
141
    @XmlElement(name = "CEP", required = true)
142
    protected String cep;
143
    protected String cPais;
144
    protected String xPais;
145
    protected String fone;
146
 
147
    /**
148
     * Obt�m o valor da propriedade xLgr.
149
     *
150
     * @return
151
     *     possible object is
152
     *     {@link String }
153
     *    
154
     */
155
    public String getXLgr() {
156
        return xLgr;
157
    }
158
 
159
    /**
160
     * Define o valor da propriedade xLgr.
161
     *
162
     * @param value
163
     *     allowed object is
164
     *     {@link String }
165
     *    
166
     */
167
    public void setXLgr(String value) {
168
        this.xLgr = value;
169
    }
170
 
171
    /**
172
     * Obt�m o valor da propriedade nro.
173
     *
174
     * @return
175
     *     possible object is
176
     *     {@link String }
177
     *    
178
     */
179
    public String getNro() {
180
        return nro;
181
    }
182
 
183
    /**
184
     * Define o valor da propriedade nro.
185
     *
186
     * @param value
187
     *     allowed object is
188
     *     {@link String }
189
     *    
190
     */
191
    public void setNro(String value) {
192
        this.nro = value;
193
    }
194
 
195
    /**
196
     * Obt�m o valor da propriedade xCpl.
197
     *
198
     * @return
199
     *     possible object is
200
     *     {@link String }
201
     *    
202
     */
203
    public String getXCpl() {
204
        return xCpl;
205
    }
206
 
207
    /**
208
     * Define o valor da propriedade xCpl.
209
     *
210
     * @param value
211
     *     allowed object is
212
     *     {@link String }
213
     *    
214
     */
215
    public void setXCpl(String value) {
216
        this.xCpl = value;
217
    }
218
 
219
    /**
220
     * Obt�m o valor da propriedade xBairro.
221
     *
222
     * @return
223
     *     possible object is
224
     *     {@link String }
225
     *    
226
     */
227
    public String getXBairro() {
228
        return xBairro;
229
    }
230
 
231
    /**
232
     * Define o valor da propriedade xBairro.
233
     *
234
     * @param value
235
     *     allowed object is
236
     *     {@link String }
237
     *    
238
     */
239
    public void setXBairro(String value) {
240
        this.xBairro = value;
241
    }
242
 
243
    /**
244
     * Obt�m o valor da propriedade cMun.
245
     *
246
     * @return
247
     *     possible object is
248
     *     {@link String }
249
     *    
250
     */
251
    public String getCMun() {
252
        return cMun;
253
    }
254
 
255
    /**
256
     * Define o valor da propriedade cMun.
257
     *
258
     * @param value
259
     *     allowed object is
260
     *     {@link String }
261
     *    
262
     */
263
    public void setCMun(String value) {
264
        this.cMun = value;
265
    }
266
 
267
    /**
268
     * Obt�m o valor da propriedade xMun.
269
     *
270
     * @return
271
     *     possible object is
272
     *     {@link String }
273
     *    
274
     */
275
    public String getXMun() {
276
        return xMun;
277
    }
278
 
279
    /**
280
     * Define o valor da propriedade xMun.
281
     *
282
     * @param value
283
     *     allowed object is
284
     *     {@link String }
285
     *    
286
     */
287
    public void setXMun(String value) {
288
        this.xMun = value;
289
    }
290
 
291
    /**
292
     * Obt�m o valor da propriedade uf.
293
     *
294
     * @return
295
     *     possible object is
296
     *     {@link TUfEmi }
297
     *    
298
     */
299
    public TUfEmi getUF() {
300
        return uf;
301
    }
302
 
303
    /**
304
     * Define o valor da propriedade uf.
305
     *
306
     * @param value
307
     *     allowed object is
308
     *     {@link TUfEmi }
309
     *    
310
     */
311
    public void setUF(TUfEmi value) {
312
        this.uf = value;
313
    }
314
 
315
    /**
316
     * Obt�m o valor da propriedade cep.
317
     *
318
     * @return
319
     *     possible object is
320
     *     {@link String }
321
     *    
322
     */
323
    public String getCEP() {
324
        return cep;
325
    }
326
 
327
    /**
328
     * Define o valor da propriedade cep.
329
     *
330
     * @param value
331
     *     allowed object is
332
     *     {@link String }
333
     *    
334
     */
335
    public void setCEP(String value) {
336
        this.cep = value;
337
    }
338
 
339
    /**
340
     * Obt�m o valor da propriedade cPais.
341
     *
342
     * @return
343
     *     possible object is
344
     *     {@link String }
345
     *    
346
     */
347
    public String getCPais() {
348
        return cPais;
349
    }
350
 
351
    /**
352
     * Define o valor da propriedade cPais.
353
     *
354
     * @param value
355
     *     allowed object is
356
     *     {@link String }
357
     *    
358
     */
359
    public void setCPais(String value) {
360
        this.cPais = value;
361
    }
362
 
363
    /**
364
     * Obt�m o valor da propriedade xPais.
365
     *
366
     * @return
367
     *     possible object is
368
     *     {@link String }
369
     *    
370
     */
371
    public String getXPais() {
372
        return xPais;
373
    }
374
 
375
    /**
376
     * Define o valor da propriedade xPais.
377
     *
378
     * @param value
379
     *     allowed object is
380
     *     {@link String }
381
     *    
382
     */
383
    public void setXPais(String value) {
384
        this.xPais = value;
385
    }
386
 
387
    /**
388
     * Obt�m o valor da propriedade fone.
389
     *
390
     * @return
391
     *     possible object is
392
     *     {@link String }
393
     *    
394
     */
395
    public String getFone() {
396
        return fone;
397
    }
398
 
399
    /**
400
     * Define o valor da propriedade fone.
401
     *
402
     * @param value
403
     *     allowed object is
404
     *     {@link String }
405
     *    
406
     */
407
    public void setFone(String value) {
408
        this.fone = value;
409
    }
410
 
411
}