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

Revision 43, 2.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.XmlSeeAlso;
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_TcPrInner 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_TcPrInner">
28 *   &lt;complexContent>
29 *     &lt;extension base="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_TcPrBase">
30 *     &lt;/extension>
31 *   &lt;/complexContent>
32 * &lt;/complexType>
33 * </pre>
34 *
35 *
36 */
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name = "CT_TcPrInner")
39@XmlSeeAlso({
40    TcPr.class
41})
42@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
43public class TcPrInner
44    extends TcPrBase
45    implements Child
46{
47
48    @XmlTransient
49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
50    private Object parent;
51
52    /**
53     * Gets the parent object in the object tree representing the unmarshalled xml document.
54     *
55     * @return
56     *     The parent object.
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    public Object getParent() {
60        return this.parent;
61    }
62
63    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
64    public void setParent(Object parent) {
65        this.parent = parent;
66    }
67
68    /**
69     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
70     *
71     * @param parent
72     *     The parent object in the object tree.
73     * @param unmarshaller
74     *     The unmarshaller that generated the instance.
75     */
76    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs")
77    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) {
78        setParent(parent);
79    }
80
81}
Note: See TracBrowser for help on using the repository browser.