Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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