source: branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Row.java @ 43

Revision 43, 6.6 KB checked in by jharrop, 4 years ago (diff)

Use BooleanDefaultTrue? for schema elements which do default to true, but which had ST_OnOff.

Line 
1//
2// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs
3// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4// Any modifications to this file will be lost upon recompilation of the source schema.
5// Generated on: 2007.12.19 at 02:20:48 PM GMT+10:00
6//
7
8
9package org.docx4j.jaxb.document;
10
11import java.util.ArrayList;
12import java.util.List;
13import javax.annotation.Generated;
14import javax.xml.bind.Unmarshaller;
15import javax.xml.bind.annotation.XmlAccessType;
16import javax.xml.bind.annotation.XmlAccessorType;
17import javax.xml.bind.annotation.XmlElement;
18import javax.xml.bind.annotation.XmlTransient;
19import javax.xml.bind.annotation.XmlType;
20import com.sun.xml.bind.Locatable;
21import com.sun.xml.bind.annotation.XmlLocation;
22import org.jvnet.jaxb2_commons.ppp.Child;
23import org.xml.sax.Locator;
24
25
26/**
27 * <p>Java class for CT_Row complex type.
28 *
29 * <p>The following schema fragment specifies the expected content contained within this class.
30 *
31 * <pre>
32 * &lt;complexType name="CT_Row">
33 *   &lt;complexContent>
34 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35 *       &lt;sequence>
36 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblPrEx" minOccurs="0"/>
37 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}trPr" minOccurs="0"/>
38 *         &lt;group ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}EG_ContentCellContent" maxOccurs="unbounded" minOccurs="0"/>
39 *       &lt;/sequence>
40 *     &lt;/restriction>
41 *   &lt;/complexContent>
42 * &lt;/complexType>
43 * </pre>
44 *
45 *
46 */
47@XmlAccessorType(XmlAccessType.FIELD)
48@XmlType(name = "CT_Row", propOrder = {
49    "tblPrEx",
50    "trPr",
51    "egContentCellContent"
52})
53@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
54public class Row
55    implements Locatable, Child
56{
57
58    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
59    protected TblPrEx tblPrEx;
60    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
61    protected TrPr trPr;
62    @XmlElement(name = "tc")
63    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
64    protected List<TcType> egContentCellContent;
65    @XmlTransient
66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
67    private Object parent;
68    @XmlLocation
69    @XmlTransient
70    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
71    protected Locator locator;
72
73    /**
74     * Gets the value of the tblPrEx property.
75     *
76     * @return
77     *     possible object is
78     *     {@link TblPrEx }
79     *     
80     */
81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
82    public TblPrEx getTblPrEx() {
83        return tblPrEx;
84    }
85
86    /**
87     * Sets the value of the tblPrEx property.
88     *
89     * @param value
90     *     allowed object is
91     *     {@link TblPrEx }
92     *     
93     */
94    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
95    public void setTblPrEx(TblPrEx value) {
96        this.tblPrEx = value;
97    }
98
99    /**
100     * Gets the value of the trPr property.
101     *
102     * @return
103     *     possible object is
104     *     {@link TrPr }
105     *     
106     */
107    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
108    public TrPr getTrPr() {
109        return trPr;
110    }
111
112    /**
113     * Sets the value of the trPr property.
114     *
115     * @param value
116     *     allowed object is
117     *     {@link TrPr }
118     *     
119     */
120    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
121    public void setTrPr(TrPr value) {
122        this.trPr = value;
123    }
124
125    /**
126     * Gets the value of the egContentCellContent property.
127     *
128     * <p>
129     * This accessor method returns a reference to the live list,
130     * not a snapshot. Therefore any modification you make to the
131     * returned list will be present inside the JAXB object.
132     * This is why there is not a <CODE>set</CODE> method for the egContentCellContent property.
133     *
134     * <p>
135     * For example, to add a new item, do as follows:
136     * <pre>
137     *    getEGContentCellContent().add(newItem);
138     * </pre>
139     *
140     *
141     * <p>
142     * Objects of the following type(s) are allowed in the list
143     * {@link TcType }
144     *
145     *
146     */
147    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
148    public List<TcType> getEGContentCellContent() {
149        if (egContentCellContent == null) {
150            egContentCellContent = new ArrayList<TcType>();
151        }
152        return this.egContentCellContent;
153    }
154
155    /**
156     * Gets the parent object in the object tree representing the unmarshalled xml document.
157     *
158     * @return
159     *     The parent object.
160     */
161    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
162    public Object getParent() {
163        return this.parent;
164    }
165
166    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
167    public void setParent(Object parent) {
168        this.parent = parent;
169    }
170
171    /**
172     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
173     *
174     * @param parent
175     *     The parent object in the object tree.
176     * @param unmarshaller
177     *     The unmarshaller that generated the instance.
178     */
179    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
180    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) {
181        setParent(parent);
182    }
183
184    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
185    public Locator sourceLocation() {
186        return locator;
187    }
188
189    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
190    public void setSourceLocation(Locator newLocator) {
191        locator = newLocator;
192    }
193
194}
Note: See TracBrowser for help on using the repository browser.