KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2001 > _04 > xmlenc_ > TransformsType


1
2 package org.w3._2001._04.xmlenc_;
3
4 import java.util.ArrayList JavaDoc;
5 import java.util.List JavaDoc;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 import org.w3._2000._09.xmldsig_.TransformType;
11
12
13 /**
14  * <p>Java class for TransformsType complex type.
15  *
16  * <p>The following schema fragment specifies the expected content contained within this class.
17  *
18  * <pre>
19  * &lt;complexType name="TransformsType">
20  * &lt;complexContent>
21  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22  * &lt;sequence>
23  * &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Transform" maxOccurs="unbounded"/>
24  * &lt;/sequence>
25  * &lt;/restriction>
26  * &lt;/complexContent>
27  * &lt;/complexType>
28  * </pre>
29  *
30  *
31  */

32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "TransformsType", propOrder = {
34     "transform"
35 })
36 public class TransformsType {
37
38     @XmlElement(name = "Transform", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
39     protected List JavaDoc<TransformType> transform;
40
41     /**
42      * Gets the value of the transform property.
43      *
44      * <p>
45      * This accessor method returns a reference to the live list,
46      * not a snapshot. Therefore any modification you make to the
47      * returned list will be present inside the JAXB object.
48      * This is why there is not a <CODE>set</CODE> method for the transform property.
49      *
50      * <p>
51      * For example, to add a new item, do as follows:
52      * <pre>
53      * getTransform().add(newItem);
54      * </pre>
55      *
56      *
57      * <p>
58      * Objects of the following type(s) are allowed in the list
59      * {@link TransformType }
60      *
61      *
62      */

63     public List JavaDoc<TransformType> getTransform() {
64         if (transform == null) {
65             transform = new ArrayList JavaDoc<TransformType>();
66         }
67         return this.transform;
68     }
69
70 }
71
Popular Tags