// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.05.03 at 05:21:27 PM BRT // package br.com.caelum.stella.nfe.xsd.recepcao; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Tipo Dados do VeĆ­culo * * <p>Java class for TVeiculo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TVeiculo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="placa"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <whiteSpace value="preserve"/> * <pattern value="^([A-Z]{2,3}[0-9]{4}|[A-Z]{3,4}[0-9]{3})$"/> * </restriction> * </simpleType> * </element> * <element name="UF" type="{http://www.portalfiscal.inf.br/nfe}TUf"/> * <element name="RNTC" minOccurs="0"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <minLength value="1"/> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TVeiculo", propOrder = { "placa", "uf", "rntc" }) public class TVeiculo { @XmlElement(required = true) protected String placa; @XmlElement(name = "UF", required = true) protected TUf uf; @XmlElement(name = "RNTC") protected String rntc; /** * Gets the value of the placa property. * * @return * possible object is * {@link String } * */ public String getPlaca() { return placa; } /** * Sets the value of the placa property. * * @param value * allowed object is * {@link String } * */ public void setPlaca(String value) { this.placa = value; } /** * Gets the value of the uf property. * * @return * possible object is * {@link TUf } * */ public TUf getUF() { return uf; } /** * Sets the value of the uf property. * * @param value * allowed object is * {@link TUf } * */ public void setUF(TUf value) { this.uf = value; } /** * Gets the value of the rntc property. * * @return * possible object is * {@link String } * */ public String getRNTC() { return rntc; } /** * Sets the value of the rntc property. * * @param value * allowed object is * {@link String } * */ public void setRNTC(String value) { this.rntc = value; } }