All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.swconsultoria.mdfe.schema_300.enviMDFe.TransformsType Maven / Gradle / Ivy

The newest version!

package br.com.swconsultoria.mdfe.schema_300.enviMDFe;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;


/**
 * 

Classe Java de TransformsType complex type. * *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. * *

 * <complexType name="TransformsType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Transform" type="{http://www.w3.org/2000/09/xmldsig#}TransformType" maxOccurs="2" minOccurs="2"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransformsType", namespace = "http://www.w3.org/2000/09/xmldsig#", propOrder = { "transform" }) public class TransformsType { @XmlElement(name = "Transform", required = true) protected List transform; /** * Gets the value of the transform property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the transform property. * *

* For example, to add a new item, do as follows: *

     *    getTransform().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TransformType } */ public List getTransform() { if (transform == null) { transform = new ArrayList(); } return this.transform; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy