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 | * <complexType name="TVeiculo"> |
||
| 27 | * <complexContent> |
||
| 28 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
||
| 29 | * <sequence> |
||
| 30 | * <element name="placa"> |
||
| 31 | * <simpleType> |
||
| 32 | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
||
| 33 | * <whiteSpace value="preserve"/> |
||
| 34 | * <pattern value="[A-Z]{2,3}[0-9]{4}|[A-Z]{3,4}[0-9]{3}"/> |
||
| 35 | * </restriction> |
||
| 36 | * </simpleType> |
||
| 37 | * </element> |
||
| 38 | * <element name="UF" type="{http://www.portalfiscal.inf.br/nfe}TUf"/> |
||
| 39 | * <element name="RNTC" minOccurs="0"> |
||
| 40 | * <simpleType> |
||
| 41 | * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> |
||
| 42 | * <minLength value="1"/> |
||
| 43 | * <maxLength value="20"/> |
||
| 44 | * </restriction> |
||
| 45 | * </simpleType> |
||
| 46 | * </element> |
||
| 47 | * </sequence> |
||
| 48 | * </restriction> |
||
| 49 | * </complexContent> |
||
| 50 | * </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 | } |