Subversion Repositories Integrator Subversion

Rev

Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 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.java;
10
 
11
import java.util.ArrayList;
12
import java.util.List;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlElement;
16
import javax.xml.bind.annotation.XmlType;
17
 
18
 
19
/**
20
 * <p>Classe Java de TransformsType complex type.
21
 *
22
 * <p>O seguinte fragmento do esquema especifica o conte�do esperado contido dentro desta classe.
23
 *
24
 * <pre>
25
 * &lt;complexType name="TransformsType">
26
 *   &lt;complexContent>
27
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28
 *       &lt;sequence>
29
 *         &lt;element name="Transform" type="{http://www.w3.org/2000/09/xmldsig#}TransformType" maxOccurs="2" minOccurs="2"/>
30
 *       &lt;/sequence>
31
 *     &lt;/restriction>
32
 *   &lt;/complexContent>
33
 * &lt;/complexType>
34
 * </pre>
35
 *
36
 *
37
 */
38
@XmlAccessorType(XmlAccessType.FIELD)
39
@XmlType(name = "TransformsType", namespace = "http://www.w3.org/2000/09/xmldsig#", propOrder = {
40
    "transform"
41
})
42
public class TransformsType {
43
 
44
    @XmlElement(name = "Transform", required = true)
45
    protected List<TransformType> transform;
46
 
47
    /**
48
     * Gets the value of the transform property.
49
     *
50
     * <p>
51
     * This accessor method returns a reference to the live list,
52
     * not a snapshot. Therefore any modification you make to the
53
     * returned list will be present inside the JAXB object.
54
     * This is why there is not a <CODE>set</CODE> method for the transform property.
55
     *
56
     * <p>
57
     * For example, to add a new item, do as follows:
58
     * <pre>
59
     *    getTransform().add(newItem);
60
     * </pre>
61
     *
62
     *
63
     * <p>
64
     * Objects of the following type(s) are allowed in the list
65
     * {@link TransformType }
66
     *
67
     *
68
     */
69
    public List<TransformType> getTransform() {
70
        if (transform == null) {
71
            transform = new ArrayList<TransformType>();
72
        }
73
        return this.transform;
74
    }
75
 
76
}