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

Revision 43, 4.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 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.XmlTransient;
17import javax.xml.bind.annotation.XmlType;
18import org.jvnet.jaxb2_commons.ppp.Child;
19
20
21/**
22 * <p>Java class for CT_TcBorders complex type.
23 *
24 * <p>The following schema fragment specifies the expected content contained within this class.
25 *
26 * <pre>
27 * &lt;complexType name="CT_TcBorders">
28 *   &lt;complexContent>
29 *     &lt;extension base="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_TblBorders">
30 *       &lt;sequence>
31 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tl2br" minOccurs="0"/>
32 *         &lt;element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tr2bl" minOccurs="0"/>
33 *       &lt;/sequence>
34 *     &lt;/extension>
35 *   &lt;/complexContent>
36 * &lt;/complexType>
37 * </pre>
38 *
39 *
40 */
41@XmlAccessorType(XmlAccessType.FIELD)
42@XmlType(name = "CT_TcBorders", propOrder = {
43    "tl2Br",
44    "tr2Bl"
45})
46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
47public class TcBorders
48    extends TblBorders
49    implements Child
50{
51
52    @XmlElement(name = "tl2br")
53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
54    protected Tl2Br tl2Br;
55    @XmlElement(name = "tr2bl")
56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
57    protected Tr2Bl tr2Bl;
58    @XmlTransient
59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
60    private Object parent;
61
62    /**
63     * Gets the value of the tl2Br property.
64     *
65     * @return
66     *     possible object is
67     *     {@link Tl2Br }
68     *     
69     */
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    public Tl2Br getTl2Br() {
72        return tl2Br;
73    }
74
75    /**
76     * Sets the value of the tl2Br property.
77     *
78     * @param value
79     *     allowed object is
80     *     {@link Tl2Br }
81     *     
82     */
83    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
84    public void setTl2Br(Tl2Br value) {
85        this.tl2Br = value;
86    }
87
88    /**
89     * Gets the value of the tr2Bl property.
90     *
91     * @return
92     *     possible object is
93     *     {@link Tr2Bl }
94     *     
95     */
96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
97    public Tr2Bl getTr2Bl() {
98        return tr2Bl;
99    }
100
101    /**
102     * Sets the value of the tr2Bl property.
103     *
104     * @param value
105     *     allowed object is
106     *     {@link Tr2Bl }
107     *     
108     */
109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
110    public void setTr2Bl(Tr2Bl value) {
111        this.tr2Bl = value;
112    }
113
114    /**
115     * Gets the parent object in the object tree representing the unmarshalled xml document.
116     *
117     * @return
118     *     The parent object.
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 Object getParent() {
122        return this.parent;
123    }
124
125    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
126    public void setParent(Object parent) {
127        this.parent = parent;
128    }
129
130    /**
131     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
132     *
133     * @param parent
134     *     The parent object in the object tree.
135     * @param unmarshaller
136     *     The unmarshaller that generated the instance.
137     */
138    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
139    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) {
140        setParent(parent);
141    }
142
143}
Note: See TracBrowser for help on using the repository browser.