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