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

Revision 43, 10.0 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 javax.annotation.Generated;
12import javax.xml.bind.Unmarshaller;
13import javax.xml.bind.annotation.XmlAccessType;
14import javax.xml.bind.annotation.XmlAccessorType;
15import javax.xml.bind.annotation.XmlSeeAlso;
16import javax.xml.bind.annotation.XmlTransient;
17import javax.xml.bind.annotation.XmlType;
18import com.sun.xml.bind.Locatable;
19import com.sun.xml.bind.annotation.XmlLocation;
20import org.jvnet.jaxb2_commons.ppp.Child;
21import org.xml.sax.Locator;
22
23
24/**
25 * <p>Java class for CT_TcPrBase complex type.
26 *
27 * <p>The following schema fragment specifies the expected content contained within this class.
28 *
29 * <pre>
30 * &lt;complexType name="CT_TcPrBase">
31 *   &lt;complexContent>
32 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33 *       &lt;sequence>
34 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tcW" minOccurs="0"/>
35 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hMerge" minOccurs="0"/>
36 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}vMerge" minOccurs="0"/>
37 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tcBorders" minOccurs="0"/>
38 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}shd" minOccurs="0"/>
39 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}noWrap" minOccurs="0"/>
40 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}vAlign" minOccurs="0"/>
41 *       &lt;/sequence>
42 *     &lt;/restriction>
43 *   &lt;/complexContent>
44 * &lt;/complexType>
45 * </pre>
46 *
47 *
48 */
49@XmlAccessorType(XmlAccessType.FIELD)
50@XmlType(name = "CT_TcPrBase", propOrder = {
51    "tcW",
52    "hMerge",
53    "vMerge",
54    "tcBorders",
55    "shd",
56    "noWrap",
57    "vAlign"
58})
59@XmlSeeAlso({
60    TcPrInner.class
61})
62@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
63public class TcPrBase
64    implements Locatable, Child
65{
66
67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
68    protected TcW tcW;
69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
70    protected HMerge hMerge;
71    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
72    protected VMerge vMerge;
73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
74    protected TcBorders tcBorders;
75    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
76    protected Shd shd;
77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
78    protected OnOff noWrap;
79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
80    protected CTVerticalJc vAlign;
81    @XmlTransient
82    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
83    private Object parent;
84    @XmlLocation
85    @XmlTransient
86    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
87    protected Locator locator;
88
89    /**
90     * Gets the value of the tcW property.
91     *
92     * @return
93     *     possible object is
94     *     {@link TcW }
95     *     
96     */
97    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
98    public TcW getTcW() {
99        return tcW;
100    }
101
102    /**
103     * Sets the value of the tcW property.
104     *
105     * @param value
106     *     allowed object is
107     *     {@link TcW }
108     *     
109     */
110    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
111    public void setTcW(TcW value) {
112        this.tcW = value;
113    }
114
115    /**
116     * Gets the value of the hMerge property.
117     *
118     * @return
119     *     possible object is
120     *     {@link HMerge }
121     *     
122     */
123    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
124    public HMerge getHMerge() {
125        return hMerge;
126    }
127
128    /**
129     * Sets the value of the hMerge property.
130     *
131     * @param value
132     *     allowed object is
133     *     {@link HMerge }
134     *     
135     */
136    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
137    public void setHMerge(HMerge value) {
138        this.hMerge = value;
139    }
140
141    /**
142     * Gets the value of the vMerge property.
143     *
144     * @return
145     *     possible object is
146     *     {@link VMerge }
147     *     
148     */
149    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
150    public VMerge getVMerge() {
151        return vMerge;
152    }
153
154    /**
155     * Sets the value of the vMerge property.
156     *
157     * @param value
158     *     allowed object is
159     *     {@link VMerge }
160     *     
161     */
162    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
163    public void setVMerge(VMerge value) {
164        this.vMerge = value;
165    }
166
167    /**
168     * Gets the value of the tcBorders property.
169     *
170     * @return
171     *     possible object is
172     *     {@link TcBorders }
173     *     
174     */
175    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
176    public TcBorders getTcBorders() {
177        return tcBorders;
178    }
179
180    /**
181     * Sets the value of the tcBorders property.
182     *
183     * @param value
184     *     allowed object is
185     *     {@link TcBorders }
186     *     
187     */
188    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
189    public void setTcBorders(TcBorders value) {
190        this.tcBorders = value;
191    }
192
193    /**
194     * Gets the value of the shd property.
195     *
196     * @return
197     *     possible object is
198     *     {@link Shd }
199     *     
200     */
201    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
202    public Shd getShd() {
203        return shd;
204    }
205
206    /**
207     * Sets the value of the shd property.
208     *
209     * @param value
210     *     allowed object is
211     *     {@link Shd }
212     *     
213     */
214    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
215    public void setShd(Shd value) {
216        this.shd = value;
217    }
218
219    /**
220     * Gets the value of the noWrap property.
221     *
222     * @return
223     *     possible object is
224     *     {@link OnOff }
225     *     
226     */
227    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
228    public OnOff getNoWrap() {
229        return noWrap;
230    }
231
232    /**
233     * Sets the value of the noWrap property.
234     *
235     * @param value
236     *     allowed object is
237     *     {@link OnOff }
238     *     
239     */
240    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
241    public void setNoWrap(OnOff value) {
242        this.noWrap = value;
243    }
244
245    /**
246     * Gets the value of the vAlign property.
247     *
248     * @return
249     *     possible object is
250     *     {@link CTVerticalJc }
251     *     
252     */
253    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
254    public CTVerticalJc getVAlign() {
255        return vAlign;
256    }
257
258    /**
259     * Sets the value of the vAlign property.
260     *
261     * @param value
262     *     allowed object is
263     *     {@link CTVerticalJc }
264     *     
265     */
266    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
267    public void setVAlign(CTVerticalJc value) {
268        this.vAlign = value;
269    }
270
271    /**
272     * Gets the parent object in the object tree representing the unmarshalled xml document.
273     *
274     * @return
275     *     The parent object.
276     */
277    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
278    public Object getParent() {
279        return this.parent;
280    }
281
282    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
283    public void setParent(Object parent) {
284        this.parent = parent;
285    }
286
287    /**
288     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
289     *
290     * @param parent
291     *     The parent object in the object tree.
292     * @param unmarshaller
293     *     The unmarshaller that generated the instance.
294     */
295    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
296    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) {
297        setParent(parent);
298    }
299
300    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
301    public Locator sourceLocation() {
302        return locator;
303    }
304
305    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
306    public void setSourceLocation(Locator newLocator) {
307        locator = newLocator;
308    }
309
310}
Note: See TracBrowser for help on using the repository browser.