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

Revision 43, 2.5 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.XmlTransient;
16import javax.xml.bind.annotation.XmlType;
17import org.jvnet.jaxb2_commons.ppp.Child;
18
19
20/**
21 * <p>Java class for CT_TrPr complex type.
22 *
23 * <p>The following schema fragment specifies the expected content contained within this class.
24 *
25 * <pre>
26 * &lt;complexType name="CT_TrPr">
27 *   &lt;complexContent>
28 *     &lt;extension base="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_TrPrBase">
29 *     &lt;/extension>
30 *   &lt;/complexContent>
31 * &lt;/complexType>
32 * </pre>
33 *
34 *
35 */
36@XmlAccessorType(XmlAccessType.FIELD)
37@XmlType(name = "CT_TrPr")
38@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
39public class TrPr
40    extends TrPrBase
41    implements Child
42{
43
44    @XmlTransient
45    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
46    private Object parent;
47
48    /**
49     * Gets the parent object in the object tree representing the unmarshalled xml document.
50     *
51     * @return
52     *     The parent object.
53     */
54    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
55    public Object getParent() {
56        return this.parent;
57    }
58
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    public void setParent(Object parent) {
61        this.parent = parent;
62    }
63
64    /**
65     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
66     *
67     * @param parent
68     *     The parent object in the object tree.
69     * @param unmarshaller
70     *     The unmarshaller that generated the instance.
71     */
72    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
73    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) {
74        setParent(parent);
75    }
76
77}
Note: See TracBrowser for help on using the repository browser.