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

Revision 43, 9.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_TblBorders 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_TblBorders">
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}top" minOccurs="0"/>
35 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left" minOccurs="0"/>
36 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bottom" minOccurs="0"/>
37 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}right" minOccurs="0"/>
38 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}insideH" minOccurs="0"/>
39 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}insideV" minOccurs="0"/>
40 *       &lt;/sequence>
41 *     &lt;/restriction>
42 *   &lt;/complexContent>
43 * &lt;/complexType>
44 * </pre>
45 *
46 *
47 */
48@XmlAccessorType(XmlAccessType.FIELD)
49@XmlType(name = "CT_TblBorders", propOrder = {
50    "top",
51    "left",
52    "bottom",
53    "right",
54    "insideH",
55    "insideV"
56})
57@XmlSeeAlso({
58    TcBorders.class
59})
60@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
61public class TblBorders
62    implements Locatable, Child
63{
64
65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
66    protected Top top;
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 Left left;
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 Bottom bottom;
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 Right right;
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 InsideH insideH;
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 InsideV insideV;
77    @XmlTransient
78    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
79    private Object parent;
80    @XmlLocation
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    protected Locator locator;
84
85    /**
86     * Gets the value of the top property.
87     *
88     * @return
89     *     possible object is
90     *     {@link Top }
91     *     
92     */
93    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
94    public Top getTop() {
95        return top;
96    }
97
98    /**
99     * Sets the value of the top property.
100     *
101     * @param value
102     *     allowed object is
103     *     {@link Top }
104     *     
105     */
106    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
107    public void setTop(Top value) {
108        this.top = value;
109    }
110
111    /**
112     * Gets the value of the left property.
113     *
114     * @return
115     *     possible object is
116     *     {@link Left }
117     *     
118     */
119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
120    public Left getLeft() {
121        return left;
122    }
123
124    /**
125     * Sets the value of the left property.
126     *
127     * @param value
128     *     allowed object is
129     *     {@link Left }
130     *     
131     */
132    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
133    public void setLeft(Left value) {
134        this.left = value;
135    }
136
137    /**
138     * Gets the value of the bottom property.
139     *
140     * @return
141     *     possible object is
142     *     {@link Bottom }
143     *     
144     */
145    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
146    public Bottom getBottom() {
147        return bottom;
148    }
149
150    /**
151     * Sets the value of the bottom property.
152     *
153     * @param value
154     *     allowed object is
155     *     {@link Bottom }
156     *     
157     */
158    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
159    public void setBottom(Bottom value) {
160        this.bottom = value;
161    }
162
163    /**
164     * Gets the value of the right property.
165     *
166     * @return
167     *     possible object is
168     *     {@link Right }
169     *     
170     */
171    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
172    public Right getRight() {
173        return right;
174    }
175
176    /**
177     * Sets the value of the right property.
178     *
179     * @param value
180     *     allowed object is
181     *     {@link Right }
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 void setRight(Right value) {
186        this.right = value;
187    }
188
189    /**
190     * Gets the value of the insideH property.
191     *
192     * @return
193     *     possible object is
194     *     {@link InsideH }
195     *     
196     */
197    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
198    public InsideH getInsideH() {
199        return insideH;
200    }
201
202    /**
203     * Sets the value of the insideH property.
204     *
205     * @param value
206     *     allowed object is
207     *     {@link InsideH }
208     *     
209     */
210    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
211    public void setInsideH(InsideH value) {
212        this.insideH = value;
213    }
214
215    /**
216     * Gets the value of the insideV property.
217     *
218     * @return
219     *     possible object is
220     *     {@link InsideV }
221     *     
222     */
223    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
224    public InsideV getInsideV() {
225        return insideV;
226    }
227
228    /**
229     * Sets the value of the insideV property.
230     *
231     * @param value
232     *     allowed object is
233     *     {@link InsideV }
234     *     
235     */
236    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
237    public void setInsideV(InsideV value) {
238        this.insideV = value;
239    }
240
241    /**
242     * Gets the parent object in the object tree representing the unmarshalled xml document.
243     *
244     * @return
245     *     The parent object.
246     */
247    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
248    public Object getParent() {
249        return this.parent;
250    }
251
252    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
253    public void setParent(Object parent) {
254        this.parent = parent;
255    }
256
257    /**
258     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
259     *
260     * @param parent
261     *     The parent object in the object tree.
262     * @param unmarshaller
263     *     The unmarshaller that generated the instance.
264     */
265    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
266    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) {
267        setParent(parent);
268    }
269
270    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
271    public Locator sourceLocation() {
272        return locator;
273    }
274
275    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
276    public void setSourceLocation(Locator newLocator) {
277        locator = newLocator;
278    }
279
280}
Note: See TracBrowser for help on using the repository browser.