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

Revision 43, 5.4 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.XmlElement;
16import javax.xml.bind.annotation.XmlSeeAlso;
17import javax.xml.bind.annotation.XmlTransient;
18import javax.xml.bind.annotation.XmlType;
19import com.sun.xml.bind.Locatable;
20import com.sun.xml.bind.annotation.XmlLocation;
21import org.jvnet.jaxb2_commons.ppp.Child;
22import org.xml.sax.Locator;
23
24
25/**
26 * <p>Java class for CT_TblPrExBase complex type.
27 *
28 * <p>The following schema fragment specifies the expected content contained within this class.
29 *
30 * <pre>
31 * &lt;complexType name="CT_TblPrExBase">
32 *   &lt;complexContent>
33 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
34 *       &lt;sequence>
35 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblW" minOccurs="0"/>
36 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblBorders"/>
37 *       &lt;/sequence>
38 *     &lt;/restriction>
39 *   &lt;/complexContent>
40 * &lt;/complexType>
41 * </pre>
42 *
43 *
44 */
45@XmlAccessorType(XmlAccessType.FIELD)
46@XmlType(name = "CT_TblPrExBase", propOrder = {
47    "tblW",
48    "tblBorders"
49})
50@XmlSeeAlso({
51    TblPrEx.class
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 TblPrExBase
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 TblW tblW;
60    @XmlElement(required = true)
61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
62    protected TblBorders tblBorders;
63    @XmlTransient
64    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
65    private Object parent;
66    @XmlLocation
67    @XmlTransient
68    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
69    protected Locator locator;
70
71    /**
72     * Gets the value of the tblW property.
73     *
74     * @return
75     *     possible object is
76     *     {@link TblW }
77     *     
78     */
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    public TblW getTblW() {
81        return tblW;
82    }
83
84    /**
85     * Sets the value of the tblW property.
86     *
87     * @param value
88     *     allowed object is
89     *     {@link TblW }
90     *     
91     */
92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
93    public void setTblW(TblW value) {
94        this.tblW = value;
95    }
96
97    /**
98     * Gets the value of the tblBorders property.
99     *
100     * @return
101     *     possible object is
102     *     {@link TblBorders }
103     *     
104     */
105    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
106    public TblBorders getTblBorders() {
107        return tblBorders;
108    }
109
110    /**
111     * Sets the value of the tblBorders property.
112     *
113     * @param value
114     *     allowed object is
115     *     {@link TblBorders }
116     *     
117     */
118    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
119    public void setTblBorders(TblBorders value) {
120        this.tblBorders = value;
121    }
122
123    /**
124     * Gets the parent object in the object tree representing the unmarshalled xml document.
125     *
126     * @return
127     *     The parent object.
128     */
129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
130    public Object getParent() {
131        return this.parent;
132    }
133
134    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
135    public void setParent(Object parent) {
136        this.parent = parent;
137    }
138
139    /**
140     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
141     *
142     * @param parent
143     *     The parent object in the object tree.
144     * @param unmarshaller
145     *     The unmarshaller that generated the instance.
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 void afterUnmarshal(Unmarshaller unmarshaller, Object parent) {
149        setParent(parent);
150    }
151
152    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
153    public Locator sourceLocation() {
154        return locator;
155    }
156
157    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
158    public void setSourceLocation(Locator newLocator) {
159        locator = newLocator;
160    }
161
162}
Note: See TracBrowser for help on using the repository browser.