| 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 | |
|---|
| 9 | package org.docx4j.jaxb.document; |
|---|
| 10 | |
|---|
| 11 | import javax.annotation.Generated; |
|---|
| 12 | import javax.xml.bind.Unmarshaller; |
|---|
| 13 | import javax.xml.bind.annotation.XmlAccessType; |
|---|
| 14 | import javax.xml.bind.annotation.XmlAccessorType; |
|---|
| 15 | import javax.xml.bind.annotation.XmlTransient; |
|---|
| 16 | import javax.xml.bind.annotation.XmlType; |
|---|
| 17 | import com.sun.xml.bind.Locatable; |
|---|
| 18 | import com.sun.xml.bind.annotation.XmlLocation; |
|---|
| 19 | import org.jvnet.jaxb2_commons.ppp.Child; |
|---|
| 20 | import org.xml.sax.Locator; |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | /** |
|---|
| 24 | * <p>Java class for CT_SdtBlock complex type. |
|---|
| 25 | * |
|---|
| 26 | * <p>The following schema fragment specifies the expected content contained within this class. |
|---|
| 27 | * |
|---|
| 28 | * <pre> |
|---|
| 29 | * <complexType name="CT_SdtBlock"> |
|---|
| 30 | * <complexContent> |
|---|
| 31 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|---|
| 32 | * <sequence> |
|---|
| 33 | * <element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sdtPr" minOccurs="0"/> |
|---|
| 34 | * <element ref="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sdtContent" minOccurs="0"/> |
|---|
| 35 | * </sequence> |
|---|
| 36 | * </restriction> |
|---|
| 37 | * </complexContent> |
|---|
| 38 | * </complexType> |
|---|
| 39 | * </pre> |
|---|
| 40 | * |
|---|
| 41 | * |
|---|
| 42 | */ |
|---|
| 43 | @XmlAccessorType(XmlAccessType.FIELD) |
|---|
| 44 | @XmlType(name = "CT_SdtBlock", propOrder = { |
|---|
| 45 | "sdtPr", |
|---|
| 46 | "sdtContent" |
|---|
| 47 | }) |
|---|
| 48 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 49 | public class SdtBlock implements Locatable, Child |
|---|
| 50 | { |
|---|
| 51 | |
|---|
| 52 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 53 | protected SdtPr sdtPr; |
|---|
| 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 | protected SdtContentBlock sdtContent; |
|---|
| 56 | @XmlTransient |
|---|
| 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 | private Object parent; |
|---|
| 59 | @XmlLocation |
|---|
| 60 | @XmlTransient |
|---|
| 61 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 62 | protected Locator locator; |
|---|
| 63 | |
|---|
| 64 | /** |
|---|
| 65 | * Gets the value of the sdtPr property. |
|---|
| 66 | * |
|---|
| 67 | * @return |
|---|
| 68 | * possible object is |
|---|
| 69 | * {@link SdtPr } |
|---|
| 70 | * |
|---|
| 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 SdtPr getSdtPr() { |
|---|
| 74 | return sdtPr; |
|---|
| 75 | } |
|---|
| 76 | |
|---|
| 77 | /** |
|---|
| 78 | * Sets the value of the sdtPr property. |
|---|
| 79 | * |
|---|
| 80 | * @param value |
|---|
| 81 | * allowed object is |
|---|
| 82 | * {@link SdtPr } |
|---|
| 83 | * |
|---|
| 84 | */ |
|---|
| 85 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 86 | public void setSdtPr(SdtPr value) { |
|---|
| 87 | this.sdtPr = value; |
|---|
| 88 | } |
|---|
| 89 | |
|---|
| 90 | /** |
|---|
| 91 | * Gets the value of the sdtContent property. |
|---|
| 92 | * |
|---|
| 93 | * @return |
|---|
| 94 | * possible object is |
|---|
| 95 | * {@link SdtContentBlock } |
|---|
| 96 | * |
|---|
| 97 | */ |
|---|
| 98 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 99 | public SdtContentBlock getSdtContent() { |
|---|
| 100 | return sdtContent; |
|---|
| 101 | } |
|---|
| 102 | |
|---|
| 103 | /** |
|---|
| 104 | * Sets the value of the sdtContent property. |
|---|
| 105 | * |
|---|
| 106 | * @param value |
|---|
| 107 | * allowed object is |
|---|
| 108 | * {@link SdtContentBlock } |
|---|
| 109 | * |
|---|
| 110 | */ |
|---|
| 111 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 112 | public void setSdtContent(SdtContentBlock value) { |
|---|
| 113 | this.sdtContent = value; |
|---|
| 114 | } |
|---|
| 115 | |
|---|
| 116 | /** |
|---|
| 117 | * Gets the parent object in the object tree representing the unmarshalled xml document. |
|---|
| 118 | * |
|---|
| 119 | * @return |
|---|
| 120 | * The parent object. |
|---|
| 121 | */ |
|---|
| 122 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 123 | public Object getParent() { |
|---|
| 124 | return this.parent; |
|---|
| 125 | } |
|---|
| 126 | |
|---|
| 127 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 128 | public void setParent(Object parent) { |
|---|
| 129 | this.parent = parent; |
|---|
| 130 | } |
|---|
| 131 | |
|---|
| 132 | /** |
|---|
| 133 | * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. |
|---|
| 134 | * |
|---|
| 135 | * @param parent |
|---|
| 136 | * The parent object in the object tree. |
|---|
| 137 | * @param unmarshaller |
|---|
| 138 | * The unmarshaller that generated the instance. |
|---|
| 139 | */ |
|---|
| 140 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 141 | public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { |
|---|
| 142 | setParent(parent); |
|---|
| 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 Locator sourceLocation() { |
|---|
| 147 | return locator; |
|---|
| 148 | } |
|---|
| 149 | |
|---|
| 150 | @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-19T02:20:48+10:00", comments = "JAXB RI v2.1.5-b01-fcs") |
|---|
| 151 | public void setSourceLocation(Locator newLocator) { |
|---|
| 152 | locator = newLocator; |
|---|
| 153 | } |
|---|
| 154 | |
|---|
| 155 | } |
|---|