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 Ve�culo
20
 *
21
 * <p>Classe Java de TVeiculo 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="TVeiculo">
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="placa">
31
 *           &lt;simpleType>
32
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
33
 *               &lt;whiteSpace value="preserve"/>
34
 *               &lt;pattern value="[A-Z]{2,3}[0-9]{4}|[A-Z]{3,4}[0-9]{3}"/>
35
 *             &lt;/restriction>
36
 *           &lt;/simpleType>
37
 *         &lt;/element>
38
 *         &lt;element name="UF" type="{http://www.portalfiscal.inf.br/nfe}TUf"/>
39
 *         &lt;element name="RNTC" minOccurs="0">
40
 *           &lt;simpleType>
41
 *             &lt;restriction base="{http://www.portalfiscal.inf.br/nfe}TString">
42
 *               &lt;minLength value="1"/>
43
 *               &lt;maxLength value="20"/>
44
 *             &lt;/restriction>
45
 *           &lt;/simpleType>
46
 *         &lt;/element>
47
 *       &lt;/sequence>
48
 *     &lt;/restriction>
49
 *   &lt;/complexContent>
50
 * &lt;/complexType>
51
 * </pre>
52
 *
53
 *
54
 */
55
@XmlAccessorType(XmlAccessType.FIELD)
56
@XmlType(name = "TVeiculo", propOrder = {
57
    "placa",
58
    "uf",
59
    "rntc"
60
})
61
public class TVeiculo {
62
 
63
    @XmlElement(required = true)
64
    protected String placa;
65
    @XmlElement(name = "UF", required = true)
66
    @XmlSchemaType(name = "string")
67
    protected TUf uf;
68
    @XmlElement(name = "RNTC")
69
    protected String rntc;
70
 
71
    /**
72
     * Obt�m o valor da propriedade placa.
73
     *
74
     * @return
75
     *     possible object is
76
     *     {@link String }
77
     *    
78
     */
79
    public String getPlaca() {
80
        return placa;
81
    }
82
 
83
    /**
84
     * Define o valor da propriedade placa.
85
     *
86
     * @param value
87
     *     allowed object is
88
     *     {@link String }
89
     *    
90
     */
91
    public void setPlaca(String value) {
92
        this.placa = value;
93
    }
94
 
95
    /**
96
     * Obt�m o valor da propriedade uf.
97
     *
98
     * @return
99
     *     possible object is
100
     *     {@link TUf }
101
     *    
102
     */
103
    public TUf getUF() {
104
        return uf;
105
    }
106
 
107
    /**
108
     * Define o valor da propriedade uf.
109
     *
110
     * @param value
111
     *     allowed object is
112
     *     {@link TUf }
113
     *    
114
     */
115
    public void setUF(TUf value) {
116
        this.uf = value;
117
    }
118
 
119
    /**
120
     * Obt�m o valor da propriedade rntc.
121
     *
122
     * @return
123
     *     possible object is
124
     *     {@link String }
125
     *    
126
     */
127
    public String getRNTC() {
128
        return rntc;
129
    }
130
 
131
    /**
132
     * Define o valor da propriedade rntc.
133
     *
134
     * @param value
135
     *     allowed object is
136
     *     {@link String }
137
     *    
138
     */
139
    public void setRNTC(String value) {
140
        this.rntc = value;
141
    }
142
 
143
}