1
2
3
4
5
6
7
8
9 package org.xmlhammer.model.tools.xslt;
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.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
18
19
20 /***
21 * <p>Java class for outputProperties element declaration.
22 *
23 * <p>The following schema fragment specifies the expected content contained within this class.
24 *
25 * <pre>
26 * <element name="outputProperties">
27 * <complexType>
28 * <complexContent>
29 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * <sequence maxOccurs="unbounded">
31 * <element ref="{http://www.xmlhammer.org/2007/tools/xslt}outputProperty"/>
32 * </sequence>
33 * </restriction>
34 * </complexContent>
35 * </complexType>
36 * </element>
37 * </pre>
38 *
39 *
40 */
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "", propOrder = {
43 "outputProperty"
44 })
45 @XmlRootElement(name = "outputProperties")
46 public class OutputProperties {
47
48 @XmlElement(namespace = "http://www.xmlhammer.org/2007/tools/xslt", required = true)
49 protected List<OutputProperty> outputProperty;
50
51 /***
52 * Gets the value of the outputProperty property.
53 *
54 * <p>
55 * This accessor method returns a reference to the live list,
56 * not a snapshot. Therefore any modification you make to the
57 * returned list will be present inside the JAXB object.
58 * This is why there is not a <CODE>set</CODE> method for the outputProperty property.
59 *
60 * <p>
61 * For example, to add a new item, do as follows:
62 * <pre>
63 * getOutputProperty().add(newItem);
64 * </pre>
65 *
66 *
67 * <p>
68 * Objects of the following type(s) are allowed in the list
69 * {@link OutputProperty }
70 *
71 *
72 */
73 public List<OutputProperty> getOutputProperty() {
74 if (outputProperty == null) {
75 outputProperty = new ArrayList<OutputProperty>();
76 }
77 return this.outputProperty;
78 }
79
80 }