Changeset 32


Ignore:
Timestamp:
12/16/07 08:22:34 (4 years ago)
Author:
jharrop
Message:

Use the JAXB parent-pointer-plugin, so each child object can know its parent.

Location:
branches/jaxb
Files:
2 added
89 edited

Legend:

Unmodified
Added
Removed
  • branches/jaxb/src/main/resources/wml-subset-document.xsd

    r30 r32  
    44  This is a schema for a subset of the document part of WordML. 
    55 
    6   To generate java classes, from /src/main/resources$  
     6  To generate java classes, you need xjc, from the JAXB 2.1 RI. 
     7         
     8  And optionally, the parent-pointer-plugin.  See http://fisheye5.cenqua.com/browse/jaxb2-commons/parent-pointer-plugin 
     9         
     10  We have a copy of this in the branch's lib dir.  Or you can build it yourself: 
     11         
     12        cvs -d :pserver:$DEV_JAVA_NET_USERNAME@cvs.dev.java.net:/cvs checkout -P jaxb2-commons 
     13          
     14    mvn package  
     15         
     16  To CLEAN previously generated classes, from /src/main/resources$  
    717 
    818        rm ../../../target/generated-sources/org/docx4j/jaxb/document/* -rf 
    919         
     20  To generate the classes        
     21         
    1022        sh ~/jaxb/jaxb-ri-20070917/bin/xjc.sh wml-subset-document.xsd -d ../../../target/generated-sources/ -Xlocator -mark-generated 
     23 
     24  or, with the parent-pointer-plugin: 
     25         
     26        sh ~/jaxb/jaxb-ri-20070917/bin/xjc.sh -classpath ~/jaxb/parent-pointer-plugin-1.0-SNAPSHOT.jar -Xparent-pointer   wml-subset-document.xsd -d ../../../target/generated-sources/   -Xlocator -mark-generated 
    1127         
    1228  To allow the field P.paragraphContent to contain things not 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/AnnotationRef.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "annotationRef") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class AnnotationRef 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Body.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1313import javax.annotation.Generated; 
    1414import javax.xml.bind.JAXBElement; 
     15import javax.xml.bind.Unmarshaller; 
    1516import javax.xml.bind.annotation.XmlAccessType; 
    1617import javax.xml.bind.annotation.XmlAccessorType; 
     
    2122import com.sun.xml.bind.Locatable; 
    2223import com.sun.xml.bind.annotation.XmlLocation; 
     24import org.jvnet.jaxb2_commons.ppp.Child; 
    2325import org.xml.sax.Locator; 
    2426 
     
    4951    "sectPr" 
    5052}) 
    51 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254public class Body 
    53     implements Locatable 
     55    implements Locatable, Child 
    5456{ 
    5557 
    5658    @XmlElementRefs({ 
    5759        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    58         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     60        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    5961        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6062        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    61         @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     63        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    6264    }) 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected List<JAXBElement<?>> blockLevelElements; 
    65     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6668    protected SectPr sectPr; 
     69    @XmlTransient 
     70    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    private Object parent; 
    6772    @XmlLocation 
    6873    @XmlTransient 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     74    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7075    protected Locator locator; 
    7176 
     
    8893     * <p> 
    8994     * Objects of the following type(s) are allowed in the list 
     95     * {@link JAXBElement }{@code <}{@link SdtBlock }{@code >} 
    9096     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     97     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    9198     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    9299     * {@link JAXBElement }{@code <}{@link P }{@code >} 
    93      * {@link JAXBElement }{@code <}{@link SdtBlock }{@code >} 
    94      * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    95100     *  
    96101     *  
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public List<JAXBElement<?>> getBlockLevelElements() { 
    100105        if (blockLevelElements == null) { 
     
    112117     *      
    113118     */ 
    114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    115120    public SectPr getSectPr() { 
    116121        return sectPr; 
     
    125130     *      
    126131     */ 
    127     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     132    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    128133    public void setSectPr(SectPr value) { 
    129134        this.sectPr = value; 
    130135    } 
    131136 
    132     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     137    /** 
     138     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     139     *  
     140     * @return 
     141     *     The parent object. 
     142     */ 
     143    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     144    public Object getParent() { 
     145        return this.parent; 
     146    } 
     147 
     148    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     149    public void setParent(Object parent) { 
     150        this.parent = parent; 
     151    } 
     152 
     153    /** 
     154     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     155     *  
     156     * @param parent 
     157     *     The parent object in the object tree. 
     158     * @param unmarshaller 
     159     *     The unmarshaller that generated the instance. 
     160     */ 
     161    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     162    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     163        setParent(parent); 
     164    } 
     165 
     166    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    133167    public Locator sourceLocation() { 
    134168        return locator; 
    135169    } 
    136170 
    137     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     171    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    138172    public void setSourceLocation(Locator newLocator) { 
    139173        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Bottom.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "bottom") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Bottom 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String color; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String themeColor; 
    6163    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6264    @XmlSchemaType(name = "anySimpleType") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String themeTint; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6668    @XmlSchemaType(name = "anySimpleType") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected String themeShade; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7072    @XmlSchemaType(name = "anySimpleType") 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected String sz; 
    7375    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7476    @XmlSchemaType(name = "anySimpleType") 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected String space; 
    7779    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7880    @XmlSchemaType(name = "anySimpleType") 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected String shadow; 
    8183    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    8284    @XmlSchemaType(name = "anySimpleType") 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected String frame; 
     87    @XmlTransient 
     88    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    private Object parent; 
    8590    @XmlLocation 
    8691    @XmlTransient 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    protected Locator locator; 
    8994 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public String getVal() { 
    100105        return val; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112117    public void setVal(String value) { 
    113118        this.val = value; 
     
    122127     *      
    123128     */ 
    124     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    125130    public String getColor() { 
    126131        return color; 
     
    135140     *      
    136141     */ 
    137     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    138143    public void setColor(String value) { 
    139144        this.color = value; 
     
    148153     *      
    149154     */ 
    150     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    151156    public String getThemeColor() { 
    152157        return themeColor; 
     
    161166     *      
    162167     */ 
    163     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     168    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    164169    public void setThemeColor(String value) { 
    165170        this.themeColor = value; 
     
    174179     *      
    175180     */ 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     181    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177182    public String getThemeTint() { 
    178183        return themeTint; 
     
    187192     *      
    188193     */ 
    189     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     194    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    190195    public void setThemeTint(String value) { 
    191196        this.themeTint = value; 
     
    200205     *      
    201206     */ 
    202     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     207    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    203208    public String getThemeShade() { 
    204209        return themeShade; 
     
    213218     *      
    214219     */ 
    215     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     220    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    216221    public void setThemeShade(String value) { 
    217222        this.themeShade = value; 
     
    226231     *      
    227232     */ 
    228     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     233    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    229234    public String getSz() { 
    230235        return sz; 
     
    239244     *      
    240245     */ 
    241     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     246    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    242247    public void setSz(String value) { 
    243248        this.sz = value; 
     
    252257     *      
    253258     */ 
    254     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     259    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    255260    public String getSpace() { 
    256261        return space; 
     
    265270     *      
    266271     */ 
    267     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     272    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    268273    public void setSpace(String value) { 
    269274        this.space = value; 
     
    278283     *      
    279284     */ 
    280     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     285    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    281286    public String getShadow() { 
    282287        return shadow; 
     
    291296     *      
    292297     */ 
    293     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     298    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    294299    public void setShadow(String value) { 
    295300        this.shadow = value; 
     
    304309     *      
    305310     */ 
    306     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     311    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    307312    public String getFrame() { 
    308313        return frame; 
     
    317322     *      
    318323     */ 
    319     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     324    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    320325    public void setFrame(String value) { 
    321326        this.frame = value; 
    322327    } 
    323328 
    324     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     329    /** 
     330     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     331     *  
     332     * @return 
     333     *     The parent object. 
     334     */ 
     335    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336    public Object getParent() { 
     337        return this.parent; 
     338    } 
     339 
     340    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341    public void setParent(Object parent) { 
     342        this.parent = parent; 
     343    } 
     344 
     345    /** 
     346     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     347     *  
     348     * @param parent 
     349     *     The parent object in the object tree. 
     350     * @param unmarshaller 
     351     *     The unmarshaller that generated the instance. 
     352     */ 
     353    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     355        setParent(parent); 
     356    } 
     357 
     358    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    325359    public Locator sourceLocation() { 
    326360        return locator; 
    327361    } 
    328362 
    329     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     363    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    330364    public void setSourceLocation(Locator newLocator) { 
    331365        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Br.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "br") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    45 public class Br implements Locatable 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     47public class Br implements Locatable, Child 
    4648{ 
    4749 
    4850    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    4951    @XmlSchemaType(name = "anySimpleType") 
    50     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5153    protected String type; 
    5254    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5355    @XmlSchemaType(name = "anySimpleType") 
    54     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5557    protected String clear; 
     58    @XmlTransient 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     60    private Object parent; 
    5661    @XmlLocation 
    5762    @XmlTransient 
    58     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5964    protected Locator locator; 
    6065 
     
    6772     *      
    6873     */ 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     74    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7075    public String getType() { 
    7176        return type; 
     
    8085     *      
    8186     */ 
    82     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8388    public void setType(String value) { 
    8489        this.type = value; 
     
    9398     *      
    9499     */ 
    95     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     100    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    96101    public String getClear() { 
    97102        return clear; 
     
    106111     *      
    107112     */ 
    108     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     113    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    109114    public void setClear(String value) { 
    110115        this.clear = value; 
    111116    } 
    112117 
    113     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     118    /** 
     119     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     120     *  
     121     * @return 
     122     *     The parent object. 
     123     */ 
     124    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     125    public Object getParent() { 
     126        return this.parent; 
     127    } 
     128 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     130    public void setParent(Object parent) { 
     131        this.parent = parent; 
     132    } 
     133 
     134    /** 
     135     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     136     *  
     137     * @param parent 
     138     *     The parent object in the object tree. 
     139     * @param unmarshaller 
     140     *     The unmarshaller that generated the instance. 
     141     */ 
     142    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     143    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     144        setParent(parent); 
     145    } 
     146 
     147    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    114148    public Locator sourceLocation() { 
    115149        return locator; 
    116150    } 
    117151 
    118     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     152    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    119153    public void setSourceLocation(Locator newLocator) { 
    120154        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTColor.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlAccessorType(XmlAccessType.FIELD) 
    4042@XmlType(name = "CT_Color") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class CTColor 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected String val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public String getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(String value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTDecimalNumber.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1111import java.math.BigInteger; 
    1212import javax.annotation.Generated; 
     13import javax.xml.bind.Unmarshaller; 
    1314import javax.xml.bind.annotation.XmlAccessType; 
    1415import javax.xml.bind.annotation.XmlAccessorType; 
     
    1819import com.sun.xml.bind.Locatable; 
    1920import com.sun.xml.bind.annotation.XmlLocation; 
     21import org.jvnet.jaxb2_commons.ppp.Child; 
    2022import org.xml.sax.Locator; 
    2123 
     
    4042@XmlAccessorType(XmlAccessType.FIELD) 
    4143@XmlType(name = "CT_DecimalNumber") 
    42 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    43 public class CTDecimalNumber implements Locatable 
     44@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     45public class CTDecimalNumber implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected BigInteger val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public BigInteger getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(BigInteger value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTHighlight.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlAccessorType(XmlAccessType.FIELD) 
    4042@XmlType(name = "CT_Highlight") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class CTHighlight 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected STHighlightColor val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public STHighlightColor getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(STHighlightColor value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTInd.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1111import java.math.BigInteger; 
    1212import javax.annotation.Generated; 
     13import javax.xml.bind.Unmarshaller; 
    1314import javax.xml.bind.annotation.XmlAccessType; 
    1415import javax.xml.bind.annotation.XmlAccessorType; 
     
    1819import com.sun.xml.bind.Locatable; 
    1920import com.sun.xml.bind.annotation.XmlLocation; 
     21import org.jvnet.jaxb2_commons.ppp.Child; 
    2022import org.xml.sax.Locator; 
    2123 
     
    4749@XmlAccessorType(XmlAccessType.FIELD) 
    4850@XmlType(name = "CT_Ind") 
    49 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     51@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5052public class CTInd 
    51     implements Locatable 
     53    implements Locatable, Child 
    5254{ 
    5355 
    5456    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected BigInteger left; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    58     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     60    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5961    protected BigInteger leftChars; 
    6062    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    61     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6264    protected BigInteger right; 
    6365    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    64     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6567    protected BigInteger rightChars; 
    6668    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected BigInteger hanging; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    70     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     72    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7173    protected BigInteger hangingChars; 
    7274    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    73     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     75    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7476    protected BigInteger firstLine; 
    7577    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    76     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     78    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7779    protected BigInteger firstLineChars; 
     80    @XmlTransient 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     82    private Object parent; 
    7883    @XmlLocation 
    7984    @XmlTransient 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8186    protected Locator locator; 
    8287 
     
    8994     *      
    9095     */ 
    91     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9297    public BigInteger getLeft() { 
    9398        return left; 
     
    102107     *      
    103108     */ 
    104     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    105110    public void setLeft(BigInteger value) { 
    106111        this.left = value; 
     
    115120     *      
    116121     */ 
    117     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     122    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    118123    public BigInteger getLeftChars() { 
    119124        return leftChars; 
     
    128133     *      
    129134     */ 
    130     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     135    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    131136    public void setLeftChars(BigInteger value) { 
    132137        this.leftChars = value; 
     
    141146     *      
    142147     */ 
    143     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     148    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    144149    public BigInteger getRight() { 
    145150        return right; 
     
    154159     *      
    155160     */ 
    156     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     161    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    157162    public void setRight(BigInteger value) { 
    158163        this.right = value; 
     
    167172     *      
    168173     */ 
    169     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     174    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    170175    public BigInteger getRightChars() { 
    171176        return rightChars; 
     
    180185     *      
    181186     */ 
    182     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     187    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    183188    public void setRightChars(BigInteger value) { 
    184189        this.rightChars = value; 
     
    193198     *      
    194199     */ 
    195     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     200    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    196201    public BigInteger getHanging() { 
    197202        return hanging; 
     
    206211     *      
    207212     */ 
    208     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     213    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    209214    public void setHanging(BigInteger value) { 
    210215        this.hanging = value; 
     
    219224     *      
    220225     */ 
    221     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     226    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    222227    public BigInteger getHangingChars() { 
    223228        return hangingChars; 
     
    232237     *      
    233238     */ 
    234     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     239    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    235240    public void setHangingChars(BigInteger value) { 
    236241        this.hangingChars = value; 
     
    245250     *      
    246251     */ 
    247     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     252    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    248253    public BigInteger getFirstLine() { 
    249254        return firstLine; 
     
    258263     *      
    259264     */ 
    260     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     265    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    261266    public void setFirstLine(BigInteger value) { 
    262267        this.firstLine = value; 
     
    271276     *      
    272277     */ 
    273     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     278    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    274279    public BigInteger getFirstLineChars() { 
    275280        return firstLineChars; 
     
    284289     *      
    285290     */ 
    286     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     291    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    287292    public void setFirstLineChars(BigInteger value) { 
    288293        this.firstLineChars = value; 
    289294    } 
    290295 
    291     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     296    /** 
     297     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     298     *  
     299     * @return 
     300     *     The parent object. 
     301     */ 
     302    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     303    public Object getParent() { 
     304        return this.parent; 
     305    } 
     306 
     307    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     308    public void setParent(Object parent) { 
     309        this.parent = parent; 
     310    } 
     311 
     312    /** 
     313     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     314     *  
     315     * @param parent 
     316     *     The parent object in the object tree. 
     317     * @param unmarshaller 
     318     *     The unmarshaller that generated the instance. 
     319     */ 
     320    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     321    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     322        setParent(parent); 
     323    } 
     324 
     325    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    292326    public Locator sourceLocation() { 
    293327        return locator; 
    294328    } 
    295329 
    296     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     330    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    297331    public void setSourceLocation(Locator newLocator) { 
    298332        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTJc.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlAccessorType(XmlAccessType.FIELD) 
    4042@XmlType(name = "CT_Jc") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class CTJc 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected STJc val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public STJc getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(STJc value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTNumPr.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1617import com.sun.xml.bind.Locatable; 
    1718import com.sun.xml.bind.annotation.XmlLocation; 
     19import org.jvnet.jaxb2_commons.ppp.Child; 
    1820import org.xml.sax.Locator; 
    1921 
     
    4446    "numId" 
    4547}) 
    46 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     48@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4749public class CTNumPr 
    48     implements Locatable 
     50    implements Locatable, Child 
    4951{ 
    5052 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected CTDecimalNumber ilvl; 
    53     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5456    protected CTDecimalNumber numId; 
     57    @XmlTransient 
     58    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    private Object parent; 
    5560    @XmlLocation 
    5661    @XmlTransient 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5863    protected Locator locator; 
    5964 
     
    6671     *      
    6772     */ 
    68     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6974    public CTDecimalNumber getIlvl() { 
    7075        return ilvl; 
     
    7984     *      
    8085     */ 
    81     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     86    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8287    public void setIlvl(CTDecimalNumber value) { 
    8388        this.ilvl = value; 
     
    9297     *      
    9398     */ 
    94     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     99    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    95100    public CTDecimalNumber getNumId() { 
    96101        return numId; 
     
    105110     *      
    106111     */ 
    107     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     112    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    108113    public void setNumId(CTDecimalNumber value) { 
    109114        this.numId = value; 
    110115    } 
    111116 
    112     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     117    /** 
     118     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     119     *  
     120     * @return 
     121     *     The parent object. 
     122     */ 
     123    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     124    public Object getParent() { 
     125        return this.parent; 
     126    } 
     127 
     128    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    public void setParent(Object parent) { 
     130        this.parent = parent; 
     131    } 
     132 
     133    /** 
     134     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     135     *  
     136     * @param parent 
     137     *     The parent object in the object tree. 
     138     * @param unmarshaller 
     139     *     The unmarshaller that generated the instance. 
     140     */ 
     141    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     143        setParent(parent); 
     144    } 
     145 
     146    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    113147    public Locator sourceLocation() { 
    114148        return locator; 
    115149    } 
    116150 
    117     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     151    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    118152    public void setSourceLocation(Locator newLocator) { 
    119153        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTOnOff.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlAccessorType(XmlAccessType.FIELD) 
    4042@XmlType(name = "CT_OnOff") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class CTOnOff 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected String val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public String getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(String value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTPageMar.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1111import java.math.BigInteger; 
    1212import javax.annotation.Generated; 
     13import javax.xml.bind.Unmarshaller; 
    1314import javax.xml.bind.annotation.XmlAccessType; 
    1415import javax.xml.bind.annotation.XmlAccessorType; 
     
    1819import com.sun.xml.bind.Locatable; 
    1920import com.sun.xml.bind.annotation.XmlLocation; 
     21import org.jvnet.jaxb2_commons.ppp.Child; 
    2022import org.xml.sax.Locator; 
    2123 
     
    4648@XmlAccessorType(XmlAccessType.FIELD) 
    4749@XmlType(name = "CT_PageMar") 
    48 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4951public class CTPageMar 
    50     implements Locatable 
     52    implements Locatable, Child 
    5153{ 
    5254 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    54     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5557    protected BigInteger top; 
    5658    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5860    protected BigInteger right; 
    5961    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    60     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6163    protected BigInteger bottom; 
    6264    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected BigInteger left; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    66     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6769    protected BigInteger header; 
    6870    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7072    protected BigInteger footer; 
    7173    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    72     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     74    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7375    protected BigInteger gutter; 
     76    @XmlTransient 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     78    private Object parent; 
    7479    @XmlLocation 
    7580    @XmlTransient 
    76     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7782    protected Locator locator; 
    7883 
     
    8590     *      
    8691     */ 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    public BigInteger getTop() { 
    8994        return top; 
     
    98103     *      
    99104     */ 
    100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     105    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    101106    public void setTop(BigInteger value) { 
    102107        this.top = value; 
     
    111116     *      
    112117     */ 
    113     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     118    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    114119    public BigInteger getRight() { 
    115120        return right; 
     
    124129     *      
    125130     */ 
    126     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     131    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    127132    public void setRight(BigInteger value) { 
    128133        this.right = value; 
     
    137142     *      
    138143     */ 
    139     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     144    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    140145    public BigInteger getBottom() { 
    141146        return bottom; 
     
    150155     *      
    151156     */ 
    152     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     157    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    153158    public void setBottom(BigInteger value) { 
    154159        this.bottom = value; 
     
    163168     *      
    164169     */ 
    165     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     170    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    166171    public BigInteger getLeft() { 
    167172        return left; 
     
    176181     *      
    177182     */ 
    178     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     183    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    179184    public void setLeft(BigInteger value) { 
    180185        this.left = value; 
     
    189194     *      
    190195     */ 
    191     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     196    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    192197    public BigInteger getHeader() { 
    193198        return header; 
     
    202207     *      
    203208     */ 
    204     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     209    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    205210    public void setHeader(BigInteger value) { 
    206211        this.header = value; 
     
    215220     *      
    216221     */ 
    217     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     222    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    218223    public BigInteger getFooter() { 
    219224        return footer; 
     
    228233     *      
    229234     */ 
    230     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     235    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    231236    public void setFooter(BigInteger value) { 
    232237        this.footer = value; 
     
    241246     *      
    242247     */ 
    243     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     248    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    244249    public BigInteger getGutter() { 
    245250        return gutter; 
     
    254259     *      
    255260     */ 
    256     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     261    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    257262    public void setGutter(BigInteger value) { 
    258263        this.gutter = value; 
    259264    } 
    260265 
    261     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     266    /** 
     267     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     268     *  
     269     * @return 
     270     *     The parent object. 
     271     */ 
     272    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     273    public Object getParent() { 
     274        return this.parent; 
     275    } 
     276 
     277    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     278    public void setParent(Object parent) { 
     279        this.parent = parent; 
     280    } 
     281 
     282    /** 
     283     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     284     *  
     285     * @param parent 
     286     *     The parent object in the object tree. 
     287     * @param unmarshaller 
     288     *     The unmarshaller that generated the instance. 
     289     */ 
     290    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     291    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     292        setParent(parent); 
     293    } 
     294 
     295    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    262296    public Locator sourceLocation() { 
    263297        return locator; 
    264298    } 
    265299 
    266     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     300    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    267301    public void setSourceLocation(Locator newLocator) { 
    268302        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTPageNumber.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1111import java.math.BigInteger; 
    1212import javax.annotation.Generated; 
     13import javax.xml.bind.Unmarshaller; 
    1314import javax.xml.bind.annotation.XmlAccessType; 
    1415import javax.xml.bind.annotation.XmlAccessorType; 
     
    1819import com.sun.xml.bind.Locatable; 
    1920import com.sun.xml.bind.annotation.XmlLocation; 
     21import org.jvnet.jaxb2_commons.ppp.Child; 
    2022import org.xml.sax.Locator; 
    2123 
     
    4345@XmlAccessorType(XmlAccessType.FIELD) 
    4446@XmlType(name = "CT_PageNumber") 
    45 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     47@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4648public class CTPageNumber 
    47     implements Locatable 
     49    implements Locatable, Child 
    4850{ 
    4951 
    5052    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected STNumberFormat fmt; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    54     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5557    protected BigInteger start; 
    5658    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5860    protected BigInteger chapStyle; 
    5961    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    60     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6163    protected STChapterSep chapSep; 
     64    @XmlTransient 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     66    private Object parent; 
    6267    @XmlLocation 
    6368    @XmlTransient 
    64     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6570    protected Locator locator; 
    6671 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public STNumberFormat getFmt() { 
    7782        return fmt; 
     
    8691     *      
    8792     */ 
    88     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     93    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8994    public void setFmt(STNumberFormat value) { 
    9095        this.fmt = value; 
     
    99104     *      
    100105     */ 
    101     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     106    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    102107    public BigInteger getStart() { 
    103108        return start; 
     
    112117     *      
    113118     */ 
    114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    115120    public void setStart(BigInteger value) { 
    116121        this.start = value; 
     
    125130     *      
    126131     */ 
    127     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     132    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    128133    public BigInteger getChapStyle() { 
    129134        return chapStyle; 
     
    138143     *      
    139144     */ 
    140     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     145    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    141146    public void setChapStyle(BigInteger value) { 
    142147        this.chapStyle = value; 
     
    151156     *      
    152157     */ 
    153     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     158    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    154159    public STChapterSep getChapSep() { 
    155160        return chapSep; 
     
    164169     *      
    165170     */ 
    166     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     171    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    167172    public void setChapSep(STChapterSep value) { 
    168173        this.chapSep = value; 
    169174    } 
    170175 
    171     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     176    /** 
     177     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     178     *  
     179     * @return 
     180     *     The parent object. 
     181     */ 
     182    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     183    public Object getParent() { 
     184        return this.parent; 
     185    } 
     186 
     187    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     188    public void setParent(Object parent) { 
     189        this.parent = parent; 
     190    } 
     191 
     192    /** 
     193     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     194     *  
     195     * @param parent 
     196     *     The parent object in the object tree. 
     197     * @param unmarshaller 
     198     *     The unmarshaller that generated the instance. 
     199     */ 
     200    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     201    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     202        setParent(parent); 
     203    } 
     204 
     205    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    172206    public Locator sourceLocation() { 
    173207        return locator; 
    174208    } 
    175209 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     210    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177211    public void setSourceLocation(Locator newLocator) { 
    178212        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTPageSz.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1111import java.math.BigInteger; 
    1212import javax.annotation.Generated; 
     13import javax.xml.bind.Unmarshaller; 
    1314import javax.xml.bind.annotation.XmlAccessType; 
    1415import javax.xml.bind.annotation.XmlAccessorType; 
     
    1819import com.sun.xml.bind.Locatable; 
    1920import com.sun.xml.bind.annotation.XmlLocation; 
     21import org.jvnet.jaxb2_commons.ppp.Child; 
    2022import org.xml.sax.Locator; 
    2123 
     
    4345@XmlAccessorType(XmlAccessType.FIELD) 
    4446@XmlType(name = "CT_PageSz") 
    45 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     47@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4648public class CTPageSz 
    47     implements Locatable 
     49    implements Locatable, Child 
    4850{ 
    4951 
    5052    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected BigInteger w; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    54     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5557    protected BigInteger h; 
    5658    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5860    protected STPageOrientation orient; 
    5961    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    60     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6163    protected BigInteger code; 
     64    @XmlTransient 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     66    private Object parent; 
    6267    @XmlLocation 
    6368    @XmlTransient 
    64     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6570    protected Locator locator; 
    6671 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public BigInteger getW() { 
    7782        return w; 
     
    8691     *      
    8792     */ 
    88     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     93    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8994    public void setW(BigInteger value) { 
    9095        this.w = value; 
     
    99104     *      
    100105     */ 
    101     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     106    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    102107    public BigInteger getH() { 
    103108        return h; 
     
    112117     *      
    113118     */ 
    114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    115120    public void setH(BigInteger value) { 
    116121        this.h = value; 
     
    125130     *      
    126131     */ 
    127     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     132    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    128133    public STPageOrientation getOrient() { 
    129134        return orient; 
     
    138143     *      
    139144     */ 
    140     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     145    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    141146    public void setOrient(STPageOrientation value) { 
    142147        this.orient = value; 
     
    151156     *      
    152157     */ 
    153     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     158    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    154159    public BigInteger getCode() { 
    155160        return code; 
     
    164169     *      
    165170     */ 
    166     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     171    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    167172    public void setCode(BigInteger value) { 
    168173        this.code = value; 
    169174    } 
    170175 
    171     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     176    /** 
     177     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     178     *  
     179     * @return 
     180     *     The parent object. 
     181     */ 
     182    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     183    public Object getParent() { 
     184        return this.parent; 
     185    } 
     186 
     187    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     188    public void setParent(Object parent) { 
     189        this.parent = parent; 
     190    } 
     191 
     192    /** 
     193     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     194     *  
     195     * @param parent 
     196     *     The parent object in the object tree. 
     197     * @param unmarshaller 
     198     *     The unmarshaller that generated the instance. 
     199     */ 
     200    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     201    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     202        setParent(parent); 
     203    } 
     204 
     205    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    172206    public Locator sourceLocation() { 
    173207        return locator; 
    174208    } 
    175209 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     210    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177211    public void setSourceLocation(Locator newLocator) { 
    178212        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTRPr.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    5557    "vertAlign" 
    5658}) 
    57 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    58 public class CTRPr implements Locatable 
     59@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     60public class CTRPr implements Locatable, Child 
    5961{ 
    6062 
    61     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6264    protected CTRPr.RStyle rStyle; 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected CTOnOff b; 
    65     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6668    protected CTOnOff i; 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected CTOnOff caps; 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7072    protected CTOnOff smallCaps; 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected CTOnOff strike; 
    73     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     75    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7476    protected CTOnOff dstrike; 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected CTOnOff outline; 
    77     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7880    protected CTOnOff shadow; 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected CTOnOff emboss; 
    81     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     83    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8284    protected CTOnOff imprint; 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected CTColor color; 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8688    protected CTHighlight highlight; 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8890    protected CTUnderline u; 
    89     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9092    protected CTVerticalAlignRun vertAlign; 
     93    @XmlTransient 
     94    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     95    private Object parent; 
    9196    @XmlLocation 
    9297    @XmlTransient 
    93     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     98    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9499    protected Locator locator; 
    95100 
     
    102107     *      
    103108     */ 
    104     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    105110    public CTRPr.RStyle getRStyle() { 
    106111        return rStyle; 
     
    115120     *      
    116121     */ 
    117     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     122    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    118123    public void setRStyle(CTRPr.RStyle value) { 
    119124        this.rStyle = value; 
     
    128133     *      
    129134     */ 
    130     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     135    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    131136    public CTOnOff getB() { 
    132137        return b; 
     
    141146     *      
    142147     */ 
    143     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     148    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    144149    public void setB(CTOnOff value) { 
    145150        this.b = value; 
     
    154159     *      
    155160     */ 
    156     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     161    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    157162    public CTOnOff getI() { 
    158163        return i; 
     
    167172     *      
    168173     */ 
    169     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     174    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    170175    public void setI(CTOnOff value) { 
    171176        this.i = value; 
     
    180185     *      
    181186     */ 
    182     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     187    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    183188    public CTOnOff getCaps() { 
    184189        return caps; 
     
    193198     *      
    194199     */ 
    195     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     200    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    196201    public void setCaps(CTOnOff value) { 
    197202        this.caps = value; 
     
    206211     *      
    207212     */ 
    208     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     213    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    209214    public CTOnOff getSmallCaps() { 
    210215        return smallCaps; 
     
    219224     *      
    220225     */ 
    221     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     226    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    222227    public void setSmallCaps(CTOnOff value) { 
    223228        this.smallCaps = value; 
     
    232237     *      
    233238     */ 
    234     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     239    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    235240    public CTOnOff getStrike() { 
    236241        return strike; 
     
    245250     *      
    246251     */ 
    247     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     252    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    248253    public void setStrike(CTOnOff value) { 
    249254        this.strike = value; 
     
    258263     *      
    259264     */ 
    260     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     265    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    261266    public CTOnOff getDstrike() { 
    262267        return dstrike; 
     
    271276     *      
    272277     */ 
    273     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     278    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    274279    public void setDstrike(CTOnOff value) { 
    275280        this.dstrike = value; 
     
    284289     *      
    285290     */ 
    286     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     291    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    287292    public CTOnOff getOutline() { 
    288293        return outline; 
     
    297302     *      
    298303     */ 
    299     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     304    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    300305    public void setOutline(CTOnOff value) { 
    301306        this.outline = value; 
     
    310315     *      
    311316     */ 
    312     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     317    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    313318    public CTOnOff getShadow() { 
    314319        return shadow; 
     
    323328     *      
    324329     */ 
    325     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     330    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    326331    public void setShadow(CTOnOff value) { 
    327332        this.shadow = value; 
     
    336341     *      
    337342     */ 
    338     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     343    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    339344    public CTOnOff getEmboss() { 
    340345        return emboss; 
     
    349354     *      
    350355     */ 
    351     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     356    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    352357    public void setEmboss(CTOnOff value) { 
    353358        this.emboss = value; 
     
    362367     *      
    363368     */ 
    364     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     369    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    365370    public CTOnOff getImprint() { 
    366371        return imprint; 
     
    375380     *      
    376381     */ 
    377     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     382    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    378383    public void setImprint(CTOnOff value) { 
    379384        this.imprint = value; 
     
    388393     *      
    389394     */ 
    390     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     395    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    391396    public CTColor getColor() { 
    392397        return color; 
     
    401406     *      
    402407     */ 
    403     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     408    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    404409    public void setColor(CTColor value) { 
    405410        this.color = value; 
     
    414419     *      
    415420     */ 
    416     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     421    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    417422    public CTHighlight getHighlight() { 
    418423        return highlight; 
     
    427432     *      
    428433     */ 
    429     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     434    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    430435    public void setHighlight(CTHighlight value) { 
    431436        this.highlight = value; 
     
    440445     *      
    441446     */ 
    442     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     447    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    443448    public CTUnderline getU() { 
    444449        return u; 
     
    453458     *      
    454459     */ 
    455     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     460    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    456461    public void setU(CTUnderline value) { 
    457462        this.u = value; 
     
    466471     *      
    467472     */ 
    468     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     473    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    469474    public CTVerticalAlignRun getVertAlign() { 
    470475        return vertAlign; 
     
    479484     *      
    480485     */ 
    481     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     486    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    482487    public void setVertAlign(CTVerticalAlignRun value) { 
    483488        this.vertAlign = value; 
    484489    } 
    485490 
    486     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     491    /** 
     492     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     493     *  
     494     * @return 
     495     *     The parent object. 
     496     */ 
     497    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     498    public Object getParent() { 
     499        return this.parent; 
     500    } 
     501 
     502    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     503    public void setParent(Object parent) { 
     504        this.parent = parent; 
     505    } 
     506 
     507    /** 
     508     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     509     *  
     510     * @param parent 
     511     *     The parent object in the object tree. 
     512     * @param unmarshaller 
     513     *     The unmarshaller that generated the instance. 
     514     */ 
     515    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     516    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     517        setParent(parent); 
     518    } 
     519 
     520    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    487521    public Locator sourceLocation() { 
    488522        return locator; 
    489523    } 
    490524 
    491     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     525    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    492526    public void setSourceLocation(Locator newLocator) { 
    493527        locator = newLocator; 
     
    514548    @XmlAccessorType(XmlAccessType.FIELD) 
    515549    @XmlType(name = "") 
    516     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     550    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    517551    public static class RStyle 
    518         implements Locatable 
     552        implements Locatable, Child 
    519553    { 
    520554 
    521555        @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    522         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     556        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    523557        protected String val; 
     558        @XmlTransient 
     559        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     560        private Object parent; 
    524561        @XmlLocation 
    525562        @XmlTransient 
    526         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     563        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    527564        protected Locator locator; 
    528565 
     
    535572         *      
    536573         */ 
    537         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     574        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    538575        public String getVal() { 
    539576            return val; 
     
    548585         *      
    549586         */ 
    550         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     587        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    551588        public void setVal(String value) { 
    552589            this.val = value; 
    553590        } 
    554591 
    555         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     592        /** 
     593         * Gets the parent object in the object tree representing the unmarshalled xml document. 
     594         *  
     595         * @return 
     596         *     The parent object. 
     597         */ 
     598        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     599        public Object getParent() { 
     600            return this.parent; 
     601        } 
     602 
     603        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     604        public void setParent(Object parent) { 
     605            this.parent = parent; 
     606        } 
     607 
     608        /** 
     609         * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     610         *  
     611         * @param parent 
     612         *     The parent object in the object tree. 
     613         * @param unmarshaller 
     614         *     The unmarshaller that generated the instance. 
     615         */ 
     616        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     617        public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     618            setParent(parent); 
     619        } 
     620 
     621        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    556622        public Locator sourceLocation() { 
    557623            return locator; 
    558624        } 
    559625 
    560         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     626        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    561627        public void setSourceLocation(Locator newLocator) { 
    562628            locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTSectType.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlAccessorType(XmlAccessType.FIELD) 
    4042@XmlType(name = "CT_SectType") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class CTSectType 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected STSectionMark val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public STSectionMark getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(STSectionMark value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTSpacing.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1313import java.util.List; 
    1414import javax.annotation.Generated; 
     15import javax.xml.bind.Unmarshaller; 
    1516import javax.xml.bind.annotation.XmlAccessType; 
    1617import javax.xml.bind.annotation.XmlAccessorType; 
     
    2021import com.sun.xml.bind.Locatable; 
    2122import com.sun.xml.bind.annotation.XmlLocation; 
     23import org.jvnet.jaxb2_commons.ppp.Child; 
    2224import org.xml.sax.Locator; 
    2325 
     
    4951@XmlAccessorType(XmlAccessType.FIELD) 
    5052@XmlType(name = "CT_Spacing") 
    51 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254public class CTSpacing 
    53     implements Locatable 
     55    implements Locatable, Child 
    5456{ 
    5557 
    5658    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5860    protected BigInteger before; 
    5961    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    60     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6163    protected BigInteger beforeLines; 
    6264    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String beforeAutospacing; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    66     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6769    protected BigInteger after; 
    6870    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7072    protected BigInteger afterLines; 
    7173    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    72     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     74    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7375    protected String afterAutospacing; 
    7476    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected BigInteger line; 
    7779    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    78     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7981    protected List<String> lineRule; 
     82    @XmlTransient 
     83    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     84    private Object parent; 
    8085    @XmlLocation 
    8186    @XmlTransient 
    82     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8388    protected Locator locator; 
    8489 
     
    9196     *      
    9297     */ 
    93     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     98    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9499    public BigInteger getBefore() { 
    95100        return before; 
     
    104109     *      
    105110     */ 
    106     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     111    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    107112    public void setBefore(BigInteger value) { 
    108113        this.before = value; 
     
    117122     *      
    118123     */ 
    119     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     124    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    120125    public BigInteger getBeforeLines() { 
    121126        return beforeLines; 
     
    130135     *      
    131136     */ 
    132     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     137    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    133138    public void setBeforeLines(BigInteger value) { 
    134139        this.beforeLines = value; 
     
    143148     *      
    144149     */ 
    145     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     150    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    146151    public String getBeforeAutospacing() { 
    147152        return beforeAutospacing; 
     
    156161     *      
    157162     */ 
    158     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     163    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    159164    public void setBeforeAutospacing(String value) { 
    160165        this.beforeAutospacing = value; 
     
    169174     *      
    170175     */ 
    171     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     176    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    172177    public BigInteger getAfter() { 
    173178        return after; 
     
    182187     *      
    183188     */ 
    184     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     189    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    185190    public void setAfter(BigInteger value) { 
    186191        this.after = value; 
     
    195200     *      
    196201     */ 
    197     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     202    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    198203    public BigInteger getAfterLines() { 
    199204        return afterLines; 
     
    208213     *      
    209214     */ 
    210     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     215    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    211216    public void setAfterLines(BigInteger value) { 
    212217        this.afterLines = value; 
     
    221226     *      
    222227     */ 
    223     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     228    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    224229    public String getAfterAutospacing() { 
    225230        return afterAutospacing; 
     
    234239     *      
    235240     */ 
    236     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     241    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    237242    public void setAfterAutospacing(String value) { 
    238243        this.afterAutospacing = value; 
     
    247252     *      
    248253     */ 
    249     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     254    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    250255    public BigInteger getLine() { 
    251256        return line; 
     
    260265     *      
    261266     */ 
    262     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     267    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    263268    public void setLine(BigInteger value) { 
    264269        this.line = value; 
     
    287292     *  
    288293     */ 
    289     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     294    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    290295    public List<String> getLineRule() { 
    291296        if (lineRule == null) { 
     
    295300    } 
    296301 
    297     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     302    /** 
     303     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     304     *  
     305     * @return 
     306     *     The parent object. 
     307     */ 
     308    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     309    public Object getParent() { 
     310        return this.parent; 
     311    } 
     312 
     313    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     314    public void setParent(Object parent) { 
     315        this.parent = parent; 
     316    } 
     317 
     318    /** 
     319     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     320     *  
     321     * @param parent 
     322     *     The parent object in the object tree. 
     323     * @param unmarshaller 
     324     *     The unmarshaller that generated the instance. 
     325     */ 
     326    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     327    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     328        setParent(parent); 
     329    } 
     330 
     331    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    298332    public Locator sourceLocation() { 
    299333        return locator; 
    300334    } 
    301335 
    302     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    303337    public void setSourceLocation(Locator newLocator) { 
    304338        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTUnderline.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1212import java.util.List; 
    1313import javax.annotation.Generated; 
     14import javax.xml.bind.Unmarshaller; 
    1415import javax.xml.bind.annotation.XmlAccessType; 
    1516import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlAccessorType(XmlAccessType.FIELD) 
    4345@XmlType(name = "CT_Underline") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class CTUnderline 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    50     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5153    protected List<String> val; 
    5254    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    53     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5456    protected String color; 
     57    @XmlTransient 
     58    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    private Object parent; 
    5560    @XmlLocation 
    5661    @XmlTransient 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5863    protected Locator locator; 
    5964 
     
    8085     *  
    8186     */ 
    82     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8388    public List<String> getVal() { 
    8489        if (val == null) { 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public String getColor() { 
    100105        return color; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112117    public void setColor(String value) { 
    113118        this.color = value; 
    114119    } 
    115120 
    116     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     121    /** 
     122     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     123     *  
     124     * @return 
     125     *     The parent object. 
     126     */ 
     127    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     128    public Object getParent() { 
     129        return this.parent; 
     130    } 
     131 
     132    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     133    public void setParent(Object parent) { 
     134        this.parent = parent; 
     135    } 
     136 
     137    /** 
     138     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     139     *  
     140     * @param parent 
     141     *     The parent object in the object tree. 
     142     * @param unmarshaller 
     143     *     The unmarshaller that generated the instance. 
     144     */ 
     145    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     146    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     147        setParent(parent); 
     148    } 
     149 
     150    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    117151    public Locator sourceLocation() { 
    118152        return locator; 
    119153    } 
    120154 
    121     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    122156    public void setSourceLocation(Locator newLocator) { 
    123157        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTVerticalAlignRun.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlAccessorType(XmlAccessType.FIELD) 
    4042@XmlType(name = "CT_VerticalAlignRun") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class CTVerticalAlignRun 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected STVerticalAlignRun val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public STVerticalAlignRun getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(STVerticalAlignRun value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/CTVerticalJc.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlAccessorType(XmlAccessType.FIELD) 
    4042@XmlType(name = "CT_VerticalJc") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class CTVerticalJc 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
    4648    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850    protected STVerticalJc val; 
     51    @XmlTransient 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    private Object parent; 
    4954    @XmlLocation 
    5055    @XmlTransient 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5257    protected Locator locator; 
    5358 
     
    6065     *      
    6166     */ 
    62     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6368    public STVerticalJc getVal() { 
    6469        return val; 
     
    7378     *      
    7479     */ 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    public void setVal(STVerticalJc value) { 
    7782        this.val = value; 
    7883    } 
    7984 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    /** 
     86     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     87     *  
     88     * @return 
     89     *     The parent object. 
     90     */ 
     91    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    public Object getParent() { 
     93        return this.parent; 
     94    } 
     95 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    public void setParent(Object parent) { 
     98        this.parent = parent; 
     99    } 
     100 
     101    /** 
     102     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     103     *  
     104     * @param parent 
     105     *     The parent object in the object tree. 
     106     * @param unmarshaller 
     107     *     The unmarshaller that generated the instance. 
     108     */ 
     109    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     110    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     111        setParent(parent); 
     112    } 
     113 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    81115    public Locator sourceLocation() { 
    82116        return locator; 
    83117    } 
    84118 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    86120    public void setSourceLocation(Locator newLocator) { 
    87121        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/ContinuationSeparator.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "continuationSeparator") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class ContinuationSeparator 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Cr.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "cr") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    42 public class Cr implements Locatable 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     44public class Cr implements Locatable, Child 
    4345{ 
    4446 
     47    @XmlTransient 
     48    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    private Object parent; 
    4550    @XmlLocation 
    4651    @XmlTransient 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4853    protected Locator locator; 
    4954 
    50     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    /** 
     56     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     57     *  
     58     * @return 
     59     *     The parent object. 
     60     */ 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    public Object getParent() { 
     63        return this.parent; 
     64    } 
     65 
     66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    public void setParent(Object parent) { 
     68        this.parent = parent; 
     69    } 
     70 
     71    /** 
     72     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     73     *  
     74     * @param parent 
     75     *     The parent object in the object tree. 
     76     * @param unmarshaller 
     77     *     The unmarshaller that generated the instance. 
     78     */ 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     81        setParent(parent); 
     82    } 
     83 
     84    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5185    public Locator sourceLocation() { 
    5286        return locator; 
    5387    } 
    5488 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5690    public void setSourceLocation(Locator newLocator) { 
    5791        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/DayLong.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "dayLong") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class DayLong 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/DayShort.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "dayShort") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class DayShort 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Document.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1617import com.sun.xml.bind.Locatable; 
    1718import com.sun.xml.bind.annotation.XmlLocation; 
     19import org.jvnet.jaxb2_commons.ppp.Child; 
    1820import org.xml.sax.Locator; 
    1921 
     
    4244    "body" 
    4345}) 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Document 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    49     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     51    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5052    protected Body body; 
     53    @XmlTransient 
     54    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    private Object parent; 
    5156    @XmlLocation 
    5257    @XmlTransient 
    53     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     58    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5459    protected Locator locator; 
    5560 
     
    6267     *      
    6368     */ 
    64     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6570    public Body getBody() { 
    6671        return body; 
     
    7580     *      
    7681     */ 
    77     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     82    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7883    public void setBody(Body value) { 
    7984        this.body = value; 
    8085    } 
    8186 
    82     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    /** 
     88     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     89     *  
     90     * @return 
     91     *     The parent object. 
     92     */ 
     93    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     94    public Object getParent() { 
     95        return this.parent; 
     96    } 
     97 
     98    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     99    public void setParent(Object parent) { 
     100        this.parent = parent; 
     101    } 
     102 
     103    /** 
     104     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     105     *  
     106     * @param parent 
     107     *     The parent object in the object tree. 
     108     * @param unmarshaller 
     109     *     The unmarshaller that generated the instance. 
     110     */ 
     111    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     112    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     113        setParent(parent); 
     114    } 
     115 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    83117    public Locator sourceLocation() { 
    84118        return locator; 
    85119    } 
    86120 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     121    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    88122    public void setSourceLocation(Locator newLocator) { 
    89123        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/EndnoteRef.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "endnoteRef") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class EndnoteRef 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/FootnoteRef.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "footnoteRef") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class FootnoteRef 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/HMerge.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "hMerge") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class HMerge 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
     55    @XmlTransient 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    private Object parent; 
    5358    @XmlLocation 
    5459    @XmlTransient 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     60    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5661    protected Locator locator; 
    5762 
     
    6469     *      
    6570     */ 
    66     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6772    public String getVal() { 
    6873        return val; 
     
    7782     *      
    7883     */ 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     84    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8085    public void setVal(String value) { 
    8186        this.val = value; 
    8287    } 
    8388 
    84     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    /** 
     90     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     91     *  
     92     * @return 
     93     *     The parent object. 
     94     */ 
     95    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     96    public Object getParent() { 
     97        return this.parent; 
     98    } 
     99 
     100    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     101    public void setParent(Object parent) { 
     102        this.parent = parent; 
     103    } 
     104 
     105    /** 
     106     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     107     *  
     108     * @param parent 
     109     *     The parent object in the object tree. 
     110     * @param unmarshaller 
     111     *     The unmarshaller that generated the instance. 
     112     */ 
     113    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     114    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     115        setParent(parent); 
     116    } 
     117 
     118    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    85119    public Locator sourceLocation() { 
    86120        return locator; 
    87121    } 
    88122 
    89     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     123    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    90124    public void setSourceLocation(Locator newLocator) { 
    91125        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/InsideH.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "insideH") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class InsideH 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String color; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String themeColor; 
    6163    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6264    @XmlSchemaType(name = "anySimpleType") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String themeTint; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6668    @XmlSchemaType(name = "anySimpleType") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected String themeShade; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7072    @XmlSchemaType(name = "anySimpleType") 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected String sz; 
    7375    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7476    @XmlSchemaType(name = "anySimpleType") 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected String space; 
    7779    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7880    @XmlSchemaType(name = "anySimpleType") 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected String shadow; 
    8183    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    8284    @XmlSchemaType(name = "anySimpleType") 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected String frame; 
     87    @XmlTransient 
     88    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    private Object parent; 
    8590    @XmlLocation 
    8691    @XmlTransient 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    protected Locator locator; 
    8994 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public String getVal() { 
    100105        return val; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112117    public void setVal(String value) { 
    113118        this.val = value; 
     
    122127     *      
    123128     */ 
    124     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    125130    public String getColor() { 
    126131        return color; 
     
    135140     *      
    136141     */ 
    137     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    138143    public void setColor(String value) { 
    139144        this.color = value; 
     
    148153     *      
    149154     */ 
    150     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    151156    public String getThemeColor() { 
    152157        return themeColor; 
     
    161166     *      
    162167     */ 
    163     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     168    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    164169    public void setThemeColor(String value) { 
    165170        this.themeColor = value; 
     
    174179     *      
    175180     */ 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     181    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177182    public String getThemeTint() { 
    178183        return themeTint; 
     
    187192     *      
    188193     */ 
    189     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     194    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    190195    public void setThemeTint(String value) { 
    191196        this.themeTint = value; 
     
    200205     *      
    201206     */ 
    202     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     207    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    203208    public String getThemeShade() { 
    204209        return themeShade; 
     
    213218     *      
    214219     */ 
    215     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     220    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    216221    public void setThemeShade(String value) { 
    217222        this.themeShade = value; 
     
    226231     *      
    227232     */ 
    228     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     233    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    229234    public String getSz() { 
    230235        return sz; 
     
    239244     *      
    240245     */ 
    241     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     246    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    242247    public void setSz(String value) { 
    243248        this.sz = value; 
     
    252257     *      
    253258     */ 
    254     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     259    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    255260    public String getSpace() { 
    256261        return space; 
     
    265270     *      
    266271     */ 
    267     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     272    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    268273    public void setSpace(String value) { 
    269274        this.space = value; 
     
    278283     *      
    279284     */ 
    280     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     285    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    281286    public String getShadow() { 
    282287        return shadow; 
     
    291296     *      
    292297     */ 
    293     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     298    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    294299    public void setShadow(String value) { 
    295300        this.shadow = value; 
     
    304309     *      
    305310     */ 
    306     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     311    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    307312    public String getFrame() { 
    308313        return frame; 
     
    317322     *      
    318323     */ 
    319     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     324    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    320325    public void setFrame(String value) { 
    321326        this.frame = value; 
    322327    } 
    323328 
    324     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     329    /** 
     330     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     331     *  
     332     * @return 
     333     *     The parent object. 
     334     */ 
     335    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336    public Object getParent() { 
     337        return this.parent; 
     338    } 
     339 
     340    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341    public void setParent(Object parent) { 
     342        this.parent = parent; 
     343    } 
     344 
     345    /** 
     346     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     347     *  
     348     * @param parent 
     349     *     The parent object in the object tree. 
     350     * @param unmarshaller 
     351     *     The unmarshaller that generated the instance. 
     352     */ 
     353    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     355        setParent(parent); 
     356    } 
     357 
     358    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    325359    public Locator sourceLocation() { 
    326360        return locator; 
    327361    } 
    328362 
    329     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     363    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    330364    public void setSourceLocation(Locator newLocator) { 
    331365        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/InsideV.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "insideV") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class InsideV 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String color; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String themeColor; 
    6163    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6264    @XmlSchemaType(name = "anySimpleType") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String themeTint; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6668    @XmlSchemaType(name = "anySimpleType") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected String themeShade; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7072    @XmlSchemaType(name = "anySimpleType") 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected String sz; 
    7375    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7476    @XmlSchemaType(name = "anySimpleType") 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected String space; 
    7779    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7880    @XmlSchemaType(name = "anySimpleType") 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected String shadow; 
    8183    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    8284    @XmlSchemaType(name = "anySimpleType") 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected String frame; 
     87    @XmlTransient 
     88    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    private Object parent; 
    8590    @XmlLocation 
    8691    @XmlTransient 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    protected Locator locator; 
    8994 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public String getVal() { 
    100105        return val; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112117    public void setVal(String value) { 
    113118        this.val = value; 
     
    122127     *      
    123128     */ 
    124     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    125130    public String getColor() { 
    126131        return color; 
     
    135140     *      
    136141     */ 
    137     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    138143    public void setColor(String value) { 
    139144        this.color = value; 
     
    148153     *      
    149154     */ 
    150     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    151156    public String getThemeColor() { 
    152157        return themeColor; 
     
    161166     *      
    162167     */ 
    163     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     168    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    164169    public void setThemeColor(String value) { 
    165170        this.themeColor = value; 
     
    174179     *      
    175180     */ 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     181    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177182    public String getThemeTint() { 
    178183        return themeTint; 
     
    187192     *      
    188193     */ 
    189     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     194    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    190195    public void setThemeTint(String value) { 
    191196        this.themeTint = value; 
     
    200205     *      
    201206     */ 
    202     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     207    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    203208    public String getThemeShade() { 
    204209        return themeShade; 
     
    213218     *      
    214219     */ 
    215     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     220    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    216221    public void setThemeShade(String value) { 
    217222        this.themeShade = value; 
     
    226231     *      
    227232     */ 
    228     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     233    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    229234    public String getSz() { 
    230235        return sz; 
     
    239244     *      
    240245     */ 
    241     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     246    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    242247    public void setSz(String value) { 
    243248        this.sz = value; 
     
    252257     *      
    253258     */ 
    254     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     259    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    255260    public String getSpace() { 
    256261        return space; 
     
    265270     *      
    266271     */ 
    267     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     272    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    268273    public void setSpace(String value) { 
    269274        this.space = value; 
     
    278283     *      
    279284     */ 
    280     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     285    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    281286    public String getShadow() { 
    282287        return shadow; 
     
    291296     *      
    292297     */ 
    293     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     298    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    294299    public void setShadow(String value) { 
    295300        this.shadow = value; 
     
    304309     *      
    305310     */ 
    306     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     311    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    307312    public String getFrame() { 
    308313        return frame; 
     
    317322     *      
    318323     */ 
    319     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     324    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    320325    public void setFrame(String value) { 
    321326        this.frame = value; 
    322327    } 
    323328 
    324     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     329    /** 
     330     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     331     *  
     332     * @return 
     333     *     The parent object. 
     334     */ 
     335    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336    public Object getParent() { 
     337        return this.parent; 
     338    } 
     339 
     340    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341    public void setParent(Object parent) { 
     342        this.parent = parent; 
     343    } 
     344 
     345    /** 
     346     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     347     *  
     348     * @param parent 
     349     *     The parent object in the object tree. 
     350     * @param unmarshaller 
     351     *     The unmarshaller that generated the instance. 
     352     */ 
     353    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     355        setParent(parent); 
     356    } 
     357 
     358    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    325359    public Locator sourceLocation() { 
    326360        return locator; 
    327361    } 
    328362 
    329     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     363    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    330364    public void setSourceLocation(Locator newLocator) { 
    331365        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/LastRenderedPageBreak.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "lastRenderedPageBreak") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class LastRenderedPageBreak 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Left.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "left") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Left 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String color; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String themeColor; 
    6163    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6264    @XmlSchemaType(name = "anySimpleType") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String themeTint; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6668    @XmlSchemaType(name = "anySimpleType") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected String themeShade; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7072    @XmlSchemaType(name = "anySimpleType") 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected String sz; 
    7375    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7476    @XmlSchemaType(name = "anySimpleType") 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected String space; 
    7779    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7880    @XmlSchemaType(name = "anySimpleType") 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected String shadow; 
    8183    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    8284    @XmlSchemaType(name = "anySimpleType") 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected String frame; 
     87    @XmlTransient 
     88    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    private Object parent; 
    8590    @XmlLocation 
    8691    @XmlTransient 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    protected Locator locator; 
    8994 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public String getVal() { 
    100105        return val; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112117    public void setVal(String value) { 
    113118        this.val = value; 
     
    122127     *      
    123128     */ 
    124     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    125130    public String getColor() { 
    126131        return color; 
     
    135140     *      
    136141     */ 
    137     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    138143    public void setColor(String value) { 
    139144        this.color = value; 
     
    148153     *      
    149154     */ 
    150     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    151156    public String getThemeColor() { 
    152157        return themeColor; 
     
    161166     *      
    162167     */ 
    163     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     168    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    164169    public void setThemeColor(String value) { 
    165170        this.themeColor = value; 
     
    174179     *      
    175180     */ 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     181    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177182    public String getThemeTint() { 
    178183        return themeTint; 
     
    187192     *      
    188193     */ 
    189     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     194    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    190195    public void setThemeTint(String value) { 
    191196        this.themeTint = value; 
     
    200205     *      
    201206     */ 
    202     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     207    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    203208    public String getThemeShade() { 
    204209        return themeShade; 
     
    213218     *      
    214219     */ 
    215     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     220    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    216221    public void setThemeShade(String value) { 
    217222        this.themeShade = value; 
     
    226231     *      
    227232     */ 
    228     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     233    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    229234    public String getSz() { 
    230235        return sz; 
     
    239244     *      
    240245     */ 
    241     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     246    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    242247    public void setSz(String value) { 
    243248        this.sz = value; 
     
    252257     *      
    253258     */ 
    254     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     259    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    255260    public String getSpace() { 
    256261        return space; 
     
    265270     *      
    266271     */ 
    267     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     272    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    268273    public void setSpace(String value) { 
    269274        this.space = value; 
     
    278283     *      
    279284     */ 
    280     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     285    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    281286    public String getShadow() { 
    282287        return shadow; 
     
    291296     *      
    292297     */ 
    293     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     298    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    294299    public void setShadow(String value) { 
    295300        this.shadow = value; 
     
    304309     *      
    305310     */ 
    306     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     311    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    307312    public String getFrame() { 
    308313        return frame; 
     
    317322     *      
    318323     */ 
    319     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     324    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    320325    public void setFrame(String value) { 
    321326        this.frame = value; 
    322327    } 
    323328 
    324     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     329    /** 
     330     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     331     *  
     332     * @return 
     333     *     The parent object. 
     334     */ 
     335    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336    public Object getParent() { 
     337        return this.parent; 
     338    } 
     339 
     340    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341    public void setParent(Object parent) { 
     342        this.parent = parent; 
     343    } 
     344 
     345    /** 
     346     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     347     *  
     348     * @param parent 
     349     *     The parent object in the object tree. 
     350     * @param unmarshaller 
     351     *     The unmarshaller that generated the instance. 
     352     */ 
     353    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     355        setParent(parent); 
     356    } 
     357 
     358    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    325359    public Locator sourceLocation() { 
    326360        return locator; 
    327361    } 
    328362 
    329     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     363    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    330364    public void setSourceLocation(Locator newLocator) { 
    331365        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Lock.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "lock") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    45 public class Lock implements Locatable 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     47public class Lock implements Locatable, Child 
    4648{ 
    4749 
    4850    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    4951    @XmlSchemaType(name = "anySimpleType") 
    50     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5153    protected String val; 
     54    @XmlTransient 
     55    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    private Object parent; 
    5257    @XmlLocation 
    5358    @XmlTransient 
    54     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5560    protected Locator locator; 
    5661 
     
    6368     *      
    6469     */ 
    65     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     70    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6671    public String getVal() { 
    6772        return val; 
     
    7681     *      
    7782     */ 
    78     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     83    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7984    public void setVal(String value) { 
    8085        this.val = value; 
    8186    } 
    8287 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     88    /** 
     89     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     90     *  
     91     * @return 
     92     *     The parent object. 
     93     */ 
     94    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     95    public Object getParent() { 
     96        return this.parent; 
     97    } 
     98 
     99    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     100    public void setParent(Object parent) { 
     101        this.parent = parent; 
     102    } 
     103 
     104    /** 
     105     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     106     *  
     107     * @param parent 
     108     *     The parent object in the object tree. 
     109     * @param unmarshaller 
     110     *     The unmarshaller that generated the instance. 
     111     */ 
     112    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     113    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     114        setParent(parent); 
     115    } 
     116 
     117    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    84118    public Locator sourceLocation() { 
    85119        return locator; 
    86120    } 
    87121 
    88     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     122    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    89123    public void setSourceLocation(Locator newLocator) { 
    90124        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/MonthLong.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "monthLong") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class MonthLong 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/MonthShort.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "monthShort") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class MonthShort 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/NoBreakHyphen.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "noBreakHyphen") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    42 public class NoBreakHyphen implements Locatable 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     44public class NoBreakHyphen implements Locatable, Child 
    4345{ 
    4446 
     47    @XmlTransient 
     48    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    private Object parent; 
    4550    @XmlLocation 
    4651    @XmlTransient 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4853    protected Locator locator; 
    4954 
    50     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    /** 
     56     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     57     *  
     58     * @return 
     59     *     The parent object. 
     60     */ 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    public Object getParent() { 
     63        return this.parent; 
     64    } 
     65 
     66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    public void setParent(Object parent) { 
     68        this.parent = parent; 
     69    } 
     70 
     71    /** 
     72     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     73     *  
     74     * @param parent 
     75     *     The parent object in the object tree. 
     76     * @param unmarshaller 
     77     *     The unmarshaller that generated the instance. 
     78     */ 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     81        setParent(parent); 
     82    } 
     83 
     84    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5185    public Locator sourceLocation() { 
    5286        return locator; 
    5387    } 
    5488 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5690    public void setSourceLocation(Locator newLocator) { 
    5791        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/ObjectFactory.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    6767 
    6868    /** 
     69     * Create an instance of {@link CTUnderline } 
     70     *  
     71     */ 
     72    public CTUnderline createCTUnderline() { 
     73        return new CTUnderline(); 
     74    } 
     75 
     76    /** 
     77     * Create an instance of {@link TcPrInner } 
     78     *  
     79     */ 
     80    public TcPrInner createTcPrInner() { 
     81        return new TcPrInner(); 
     82    } 
     83 
     84    /** 
     85     * Create an instance of {@link CTColor } 
     86     *  
     87     */ 
     88    public CTColor createCTColor() { 
     89        return new CTColor(); 
     90    } 
     91 
     92    /** 
     93     * Create an instance of {@link RunTrackChange } 
     94     *  
     95     */ 
     96    public RunTrackChange createRunTrackChange() { 
     97        return new RunTrackChange(); 
     98    } 
     99 
     100    /** 
     101     * Create an instance of {@link Document } 
     102     *  
     103     */ 
     104    public Document createDocument() { 
     105        return new Document(); 
     106    } 
     107 
     108    /** 
     109     * Create an instance of {@link HMerge } 
     110     *  
     111     */ 
     112    public HMerge createHMerge() { 
     113        return new HMerge(); 
     114    } 
     115 
     116    /** 
     117     * Create an instance of {@link CTRPr.RStyle } 
     118     *  
     119     */ 
     120    public CTRPr.RStyle createCTRPrRStyle() { 
     121        return new CTRPr.RStyle(); 
     122    } 
     123 
     124    /** 
     125     * Create an instance of {@link TblPr } 
     126     *  
     127     */ 
     128    public TblPr createTblPr() { 
     129        return new TblPr(); 
     130    } 
     131 
     132    /** 
     133     * Create an instance of {@link SdtBlock } 
     134     *  
     135     */ 
     136    public SdtBlock createSdtBlock() { 
     137        return new SdtBlock(); 
     138    } 
     139 
     140    /** 
     141     * Create an instance of {@link TcW } 
     142     *  
     143     */ 
     144    public TcW createTcW() { 
     145        return new TcW(); 
     146    } 
     147 
     148    /** 
     149     * Create an instance of {@link CTPageNumber } 
     150     *  
     151     */ 
     152    public CTPageNumber createCTPageNumber() { 
     153        return new CTPageNumber(); 
     154    } 
     155 
     156    /** 
     157     * Create an instance of {@link SoftHyphen } 
     158     *  
     159     */ 
     160    public SoftHyphen createSoftHyphen() { 
     161        return new SoftHyphen(); 
     162    } 
     163 
     164    /** 
     165     * Create an instance of {@link SectPr } 
     166     *  
     167     */ 
     168    public SectPr createSectPr() { 
     169        return new SectPr(); 
     170    } 
     171 
     172    /** 
     173     * Create an instance of {@link Sym } 
     174     *  
     175     */ 
     176    public Sym createSym() { 
     177        return new Sym(); 
     178    } 
     179 
     180    /** 
     181     * Create an instance of {@link CTJc } 
     182     *  
     183     */ 
     184    public CTJc createCTJc() { 
     185        return new CTJc(); 
     186    } 
     187 
     188    /** 
     189     * Create an instance of {@link CTInd } 
     190     *  
     191     */ 
     192    public CTInd createCTInd() { 
     193        return new CTInd(); 
     194    } 
     195 
     196    /** 
     197     * Create an instance of {@link CTSectType } 
     198     *  
     199     */ 
     200    public CTSectType createCTSectType() { 
     201        return new CTSectType(); 
     202    } 
     203 
     204    /** 
     205     * Create an instance of {@link TblPrBase } 
     206     *  
     207     */ 
     208    public TblPrBase createTblPrBase() { 
     209        return new TblPrBase(); 
     210    } 
     211 
     212    /** 
     213     * Create an instance of {@link TcPrBase } 
     214     *  
     215     */ 
     216    public TcPrBase createTcPrBase() { 
     217        return new TcPrBase(); 
     218    } 
     219 
     220    /** 
     221     * Create an instance of {@link DayShort } 
     222     *  
     223     */ 
     224    public DayShort createDayShort() { 
     225        return new DayShort(); 
     226    } 
     227 
     228    /** 
    69229     * Create an instance of {@link CTOnOff } 
    70230     *  
     
    75235 
    76236    /** 
     237     * Create an instance of {@link TblBorders } 
     238     *  
     239     */ 
     240    public TblBorders createTblBorders() { 
     241        return new TblBorders(); 
     242    } 
     243 
     244    /** 
     245     * Create an instance of {@link Ptab } 
     246     *  
     247     */ 
     248    public Ptab createPtab() { 
     249        return new Ptab(); 
     250    } 
     251 
     252    /** 
     253     * Create an instance of {@link Text } 
     254     *  
     255     */ 
     256    public Text createText() { 
     257        return new Text(); 
     258    } 
     259 
     260    /** 
     261     * Create an instance of {@link Left } 
     262     *  
     263     */ 
     264    public Left createLeft() { 
     265        return new Left(); 
     266    } 
     267 
     268    /** 
     269     * Create an instance of {@link SdtPr.Alias } 
     270     *  
     271     */ 
     272    public SdtPr.Alias createSdtPrAlias() { 
     273        return new SdtPr.Alias(); 
     274    } 
     275 
     276    /** 
     277     * Create an instance of {@link EndnoteRef } 
     278     *  
     279     */ 
     280    public EndnoteRef createEndnoteRef() { 
     281        return new EndnoteRef(); 
     282    } 
     283 
     284    /** 
     285     * Create an instance of {@link SdtPr.Tag } 
     286     *  
     287     */ 
     288    public SdtPr.Tag createSdtPrTag() { 
     289        return new SdtPr.Tag(); 
     290    } 
     291 
     292    /** 
     293     * Create an instance of {@link CTPageMar } 
     294     *  
     295     */ 
     296    public CTPageMar createCTPageMar() { 
     297        return new CTPageMar(); 
     298    } 
     299 
     300    /** 
     301     * Create an instance of {@link SdtPr } 
     302     *  
     303     */ 
     304    public SdtPr createSdtPr() { 
     305        return new SdtPr(); 
     306    } 
     307 
     308    /** 
     309     * Create an instance of {@link DayLong } 
     310     *  
     311     */ 
     312    public DayLong createDayLong() { 
     313        return new DayLong(); 
     314    } 
     315 
     316    /** 
     317     * Create an instance of {@link Right } 
     318     *  
     319     */ 
     320    public Right createRight() { 
     321        return new Right(); 
     322    } 
     323 
     324    /** 
     325     * Create an instance of {@link TrPrBase } 
     326     *  
     327     */ 
     328    public TrPrBase createTrPrBase() { 
     329        return new TrPrBase(); 
     330    } 
     331 
     332    /** 
     333     * Create an instance of {@link CTVerticalJc } 
     334     *  
     335     */ 
     336    public CTVerticalJc createCTVerticalJc() { 
     337        return new CTVerticalJc(); 
     338    } 
     339 
     340    /** 
     341     * Create an instance of {@link YearLong } 
     342     *  
     343     */ 
     344    public YearLong createYearLong() { 
     345        return new YearLong(); 
     346    } 
     347 
     348    /** 
     349     * Create an instance of {@link AnnotationRef } 
     350     *  
     351     */ 
     352    public AnnotationRef createAnnotationRef() { 
     353        return new AnnotationRef(); 
     354    } 
     355 
     356    /** 
     357     * Create an instance of {@link Body } 
     358     *  
     359     */ 
     360    public Body createBody() { 
     361        return new Body(); 
     362    } 
     363 
     364    /** 
     365     * Create an instance of {@link CTNumPr } 
     366     *  
     367     */ 
     368    public CTNumPr createCTNumPr() { 
     369        return new CTNumPr(); 
     370    } 
     371 
     372    /** 
     373     * Create an instance of {@link YearShort } 
     374     *  
     375     */ 
     376    public YearShort createYearShort() { 
     377        return new YearShort(); 
     378    } 
     379 
     380    /** 
     381     * Create an instance of {@link Tr2Bl } 
     382     *  
     383     */ 
     384    public Tr2Bl createTr2Bl() { 
     385        return new Tr2Bl(); 
     386    } 
     387 
     388    /** 
     389     * Create an instance of {@link Top } 
     390     *  
     391     */ 
     392    public Top createTop() { 
     393        return new Top(); 
     394    } 
     395 
     396    /** 
     397     * Create an instance of {@link Bottom } 
     398     *  
     399     */ 
     400    public Bottom createBottom() { 
     401        return new Bottom(); 
     402    } 
     403 
     404    /** 
     405     * Create an instance of {@link CTDecimalNumber } 
     406     *  
     407     */ 
     408    public CTDecimalNumber createCTDecimalNumber() { 
     409        return new CTDecimalNumber(); 
     410    } 
     411 
     412    /** 
     413     * Create an instance of {@link TblPrExBase } 
     414     *  
     415     */ 
     416    public TblPrExBase createTblPrExBase() { 
     417        return new TblPrExBase(); 
     418    } 
     419 
     420    /** 
     421     * Create an instance of {@link InsideH } 
     422     *  
     423     */ 
     424    public InsideH createInsideH() { 
     425        return new InsideH(); 
     426    } 
     427 
     428    /** 
     429     * Create an instance of {@link Row } 
     430     *  
     431     */ 
     432    public Row createRow() { 
     433        return new Row(); 
     434    } 
     435 
     436    /** 
     437     * Create an instance of {@link Tab } 
     438     *  
     439     */ 
     440    public Tab createTab() { 
     441        return new Tab(); 
     442    } 
     443 
     444    /** 
     445     * Create an instance of {@link TcBorders } 
     446     *  
     447     */ 
     448    public TcBorders createTcBorders() { 
     449        return new TcBorders(); 
     450    } 
     451 
     452    /** 
     453     * Create an instance of {@link VMerge } 
     454     *  
     455     */ 
     456    public VMerge createVMerge() { 
     457        return new VMerge(); 
     458    } 
     459 
     460    /** 
     461     * Create an instance of {@link TblPrEx } 
     462     *  
     463     */ 
     464    public TblPrEx createTblPrEx() { 
     465        return new TblPrEx(); 
     466    } 
     467 
     468    /** 
     469     * Create an instance of {@link Tbl } 
     470     *  
     471     */ 
     472    public Tbl createTbl() { 
     473        return new Tbl(); 
     474    } 
     475 
     476    /** 
     477     * Create an instance of {@link ContinuationSeparator } 
     478     *  
     479     */ 
     480    public ContinuationSeparator createContinuationSeparator() { 
     481        return new ContinuationSeparator(); 
     482    } 
     483 
     484    /** 
     485     * Create an instance of {@link R } 
     486     *  
     487     */ 
     488    public R createR() { 
     489        return new R(); 
     490    } 
     491 
     492    /** 
     493     * Create an instance of {@link Br } 
     494     *  
     495     */ 
     496    public Br createBr() { 
     497        return new Br(); 
     498    } 
     499 
     500    /** 
     501     * Create an instance of {@link CTRPr } 
     502     *  
     503     */ 
     504    public CTRPr createCTRPr() { 
     505        return new CTRPr(); 
     506    } 
     507 
     508    /** 
     509     * Create an instance of {@link InsideV } 
     510     *  
     511     */ 
     512    public InsideV createInsideV() { 
     513        return new InsideV(); 
     514    } 
     515 
     516    /** 
     517     * Create an instance of {@link CTHighlight } 
     518     *  
     519     */ 
     520    public CTHighlight createCTHighlight() { 
     521        return new CTHighlight(); 
     522    } 
     523 
     524    /** 
     525     * Create an instance of {@link FootnoteRef } 
     526     *  
     527     */ 
     528    public FootnoteRef createFootnoteRef() { 
     529        return new FootnoteRef(); 
     530    } 
     531 
     532    /** 
     533     * Create an instance of {@link Tabs } 
     534     *  
     535     */ 
     536    public Tabs createTabs() { 
     537        return new Tabs(); 
     538    } 
     539 
     540    /** 
     541     * Create an instance of {@link PPr.PStyle } 
     542     *  
     543     */ 
     544    public PPr.PStyle createPPrPStyle() { 
     545        return new PPr.PStyle(); 
     546    } 
     547 
     548    /** 
     549     * Create an instance of {@link P } 
     550     *  
     551     */ 
     552    public P createP() { 
     553        return new P(); 
     554    } 
     555 
     556    /** 
     557     * Create an instance of {@link PPr } 
     558     *  
     559     */ 
     560    public PPr createPPr() { 
     561        return new PPr(); 
     562    } 
     563 
     564    /** 
     565     * Create an instance of {@link PgNum } 
     566     *  
     567     */ 
     568    public PgNum createPgNum() { 
     569        return new PgNum(); 
     570    } 
     571 
     572    /** 
     573     * Create an instance of {@link LastRenderedPageBreak } 
     574     *  
     575     */ 
     576    public LastRenderedPageBreak createLastRenderedPageBreak() { 
     577        return new LastRenderedPageBreak(); 
     578    } 
     579 
     580    /** 
     581     * Create an instance of {@link Tl2Br } 
     582     *  
     583     */ 
     584    public Tl2Br createTl2Br() { 
     585        return new Tl2Br(); 
     586    } 
     587 
     588    /** 
     589     * Create an instance of {@link Shd } 
     590     *  
     591     */ 
     592    public Shd createShd() { 
     593        return new Shd(); 
     594    } 
     595 
     596    /** 
     597     * Create an instance of {@link MonthShort } 
     598     *  
     599     */ 
     600    public MonthShort createMonthShort() { 
     601        return new MonthShort(); 
     602    } 
     603 
     604    /** 
     605     * Create an instance of {@link Cr } 
     606     *  
     607     */ 
     608    public Cr createCr() { 
     609        return new Cr(); 
     610    } 
     611 
     612    /** 
     613     * Create an instance of {@link Lock } 
     614     *  
     615     */ 
     616    public Lock createLock() { 
     617        return new Lock(); 
     618    } 
     619 
     620    /** 
     621     * Create an instance of {@link CTPageSz } 
     622     *  
     623     */ 
     624    public CTPageSz createCTPageSz() { 
     625        return new CTPageSz(); 
     626    } 
     627 
     628    /** 
     629     * Create an instance of {@link CTSpacing } 
     630     *  
     631     */ 
     632    public CTSpacing createCTSpacing() { 
     633        return new CTSpacing(); 
     634    } 
     635 
     636    /** 
     637     * Create an instance of {@link TrPr } 
     638     *  
     639     */ 
     640    public TrPr createTrPr() { 
     641        return new TrPr(); 
     642    } 
     643 
     644    /** 
    77645     * Create an instance of {@link CTVerticalAlignRun } 
    78646     *  
     
    83651 
    84652    /** 
    85      * Create an instance of {@link Top } 
    86      *  
    87      */ 
    88     public Top createTop() { 
    89         return new Top(); 
    90     } 
    91  
    92     /** 
    93      * Create an instance of {@link AnnotationRef } 
    94      *  
    95      */ 
    96     public AnnotationRef createAnnotationRef() { 
    97         return new AnnotationRef(); 
    98     } 
    99  
    100     /** 
    101      * Create an instance of {@link EndnoteRef } 
    102      *  
    103      */ 
    104     public EndnoteRef createEndnoteRef() { 
    105         return new EndnoteRef(); 
    106     } 
    107  
    108     /** 
    109      * Create an instance of {@link FootnoteRef } 
    110      *  
    111      */ 
    112     public FootnoteRef createFootnoteRef() { 
    113         return new FootnoteRef(); 
    114     } 
    115  
    116     /** 
    117      * Create an instance of {@link TblPrBase } 
    118      *  
    119      */ 
    120     public TblPrBase createTblPrBase() { 
    121         return new TblPrBase(); 
    122     } 
    123  
    124     /** 
    125      * Create an instance of {@link SectPr } 
    126      *  
    127      */ 
    128     public SectPr createSectPr() { 
    129         return new SectPr(); 
    130     } 
    131  
    132     /** 
    133      * Create an instance of {@link Shd } 
    134      *  
    135      */ 
    136     public Shd createShd() { 
    137         return new Shd(); 
    138     } 
    139  
    140     /** 
    141      * Create an instance of {@link CTDecimalNumber } 
    142      *  
    143      */ 
    144     public CTDecimalNumber createCTDecimalNumber() { 
    145         return new CTDecimalNumber(); 
    146     } 
    147  
    148     /** 
    149      * Create an instance of {@link TblBorders } 
    150      *  
    151      */ 
    152     public TblBorders createTblBorders() { 
    153         return new TblBorders(); 
    154     } 
    155  
    156     /** 
    157      * Create an instance of {@link InsideV } 
    158      *  
    159      */ 
    160     public InsideV createInsideV() { 
    161         return new InsideV(); 
    162     } 
    163  
    164     /** 
    165      * Create an instance of {@link Cr } 
    166      *  
    167      */ 
    168     public Cr createCr() { 
    169         return new Cr(); 
    170     } 
    171  
    172     /** 
    173      * Create an instance of {@link CTRPr.RStyle } 
    174      *  
    175      */ 
    176     public CTRPr.RStyle createCTRPrRStyle() { 
    177         return new CTRPr.RStyle(); 
    178     } 
    179  
    180     /** 
    181      * Create an instance of {@link CTSpacing } 
    182      *  
    183      */ 
    184     public CTSpacing createCTSpacing() { 
    185         return new CTSpacing(); 
    186     } 
    187  
    188     /** 
    189      * Create an instance of {@link DayLong } 
    190      *  
    191      */ 
    192     public DayLong createDayLong() { 
    193         return new DayLong(); 
    194     } 
    195  
    196     /** 
    197      * Create an instance of {@link Text } 
    198      *  
    199      */ 
    200     public Text createText() { 
    201         return new Text(); 
    202     } 
    203  
    204     /** 
    205      * Create an instance of {@link CTPageSz } 
    206      *  
    207      */ 
    208     public CTPageSz createCTPageSz() { 
    209         return new CTPageSz(); 
    210     } 
    211  
    212     /** 
    213      * Create an instance of {@link YearShort } 
    214      *  
    215      */ 
    216     public YearShort createYearShort() { 
    217         return new YearShort(); 
    218     } 
    219  
    220     /** 
    221      * Create an instance of {@link TblPrEx } 
    222      *  
    223      */ 
    224     public TblPrEx createTblPrEx() { 
    225         return new TblPrEx(); 
    226     } 
    227  
    228     /** 
    229      * Create an instance of {@link TcBorders } 
    230      *  
    231      */ 
    232     public TcBorders createTcBorders() { 
    233         return new TcBorders(); 
    234     } 
    235  
    236     /** 
    237      * Create an instance of {@link Sym } 
    238      *  
    239      */ 
    240     public Sym createSym() { 
    241         return new Sym(); 
     653     * Create an instance of {@link NoBreakHyphen } 
     654     *  
     655     */ 
     656    public NoBreakHyphen createNoBreakHyphen() { 
     657        return new NoBreakHyphen(); 
     658    } 
     659 
     660    /** 
     661     * Create an instance of {@link TcPr } 
     662     *  
     663     */ 
     664    public TcPr createTcPr() { 
     665        return new TcPr(); 
     666    } 
     667 
     668    /** 
     669     * Create an instance of {@link Separator } 
     670     *  
     671     */ 
     672    public Separator createSeparator() { 
     673        return new Separator(); 
     674    } 
     675 
     676    /** 
     677     * Create an instance of {@link SdtContentBlock } 
     678     *  
     679     */ 
     680    public SdtContentBlock createSdtContentBlock() { 
     681        return new SdtContentBlock(); 
     682    } 
     683 
     684    /** 
     685     * Create an instance of {@link TcType } 
     686     *  
     687     */ 
     688    public TcType createTcType() { 
     689        return new TcType(); 
    242690    } 
    243691 
     
    251699 
    252700    /** 
    253      * Create an instance of {@link Tabs } 
    254      *  
    255      */ 
    256     public Tabs createTabs() { 
    257         return new Tabs(); 
    258     } 
    259  
    260     /** 
    261      * Create an instance of {@link NoBreakHyphen } 
    262      *  
    263      */ 
    264     public NoBreakHyphen createNoBreakHyphen() { 
    265         return new NoBreakHyphen(); 
    266     } 
    267  
    268     /** 
    269      * Create an instance of {@link PPr.PStyle } 
    270      *  
    271      */ 
    272     public PPr.PStyle createPPrPStyle() { 
    273         return new PPr.PStyle(); 
    274     } 
    275  
    276     /** 
    277      * Create an instance of {@link TcPrBase } 
    278      *  
    279      */ 
    280     public TcPrBase createTcPrBase() { 
    281         return new TcPrBase(); 
    282     } 
    283  
    284     /** 
    285      * Create an instance of {@link SoftHyphen } 
    286      *  
    287      */ 
    288     public SoftHyphen createSoftHyphen() { 
    289         return new SoftHyphen(); 
    290     } 
    291  
    292     /** 
    293      * Create an instance of {@link CTUnderline } 
    294      *  
    295      */ 
    296     public CTUnderline createCTUnderline() { 
    297         return new CTUnderline(); 
    298     } 
    299  
    300     /** 
    301      * Create an instance of {@link CTPageMar } 
    302      *  
    303      */ 
    304     public CTPageMar createCTPageMar() { 
    305         return new CTPageMar(); 
    306     } 
    307  
    308     /** 
    309      * Create an instance of {@link Separator } 
    310      *  
    311      */ 
    312     public Separator createSeparator() { 
    313         return new Separator(); 
    314     } 
    315  
    316     /** 
    317      * Create an instance of {@link Ptab } 
    318      *  
    319      */ 
    320     public Ptab createPtab() { 
    321         return new Ptab(); 
    322     } 
    323  
    324     /** 
    325      * Create an instance of {@link Tr2Bl } 
    326      *  
    327      */ 
    328     public Tr2Bl createTr2Bl() { 
    329         return new Tr2Bl(); 
    330     } 
    331  
    332     /** 
    333      * Create an instance of {@link Tab } 
    334      *  
    335      */ 
    336     public Tab createTab() { 
    337         return new Tab(); 
    338     } 
    339  
    340     /** 
    341      * Create an instance of {@link Tbl } 
    342      *  
    343      */ 
    344     public Tbl createTbl() { 
    345         return new Tbl(); 
    346     } 
    347  
    348     /** 
    349      * Create an instance of {@link TcPrInner } 
    350      *  
    351      */ 
    352     public TcPrInner createTcPrInner() { 
    353         return new TcPrInner(); 
    354     } 
    355  
    356     /** 
    357      * Create an instance of {@link TcW } 
    358      *  
    359      */ 
    360     public TcW createTcW() { 
    361         return new TcW(); 
    362     } 
    363  
    364     /** 
    365      * Create an instance of {@link CTColor } 
    366      *  
    367      */ 
    368     public CTColor createCTColor() { 
    369         return new CTColor(); 
    370     } 
    371  
    372     /** 
    373701     * Create an instance of {@link MonthLong } 
    374702     *  
     
    376704    public MonthLong createMonthLong() { 
    377705        return new MonthLong(); 
    378     } 
    379  
    380     /** 
    381      * Create an instance of {@link Document } 
    382      *  
    383      */ 
    384     public Document createDocument() { 
    385         return new Document(); 
    386     } 
    387  
    388     /** 
    389      * Create an instance of {@link InsideH } 
    390      *  
    391      */ 
    392     public InsideH createInsideH() { 
    393         return new InsideH(); 
    394     } 
    395  
    396     /** 
    397      * Create an instance of {@link SdtBlock } 
    398      *  
    399      */ 
    400     public SdtBlock createSdtBlock() { 
    401         return new SdtBlock(); 
    402     } 
    403  
    404     /** 
    405      * Create an instance of {@link Body } 
    406      *  
    407      */ 
    408     public Body createBody() { 
    409         return new Body(); 
    410     } 
    411  
    412     /** 
    413      * Create an instance of {@link PPr } 
    414      *  
    415      */ 
    416     public PPr createPPr() { 
    417         return new PPr(); 
    418     } 
    419  
    420     /** 
    421      * Create an instance of {@link TrPrBase } 
    422      *  
    423      */ 
    424     public TrPrBase createTrPrBase() { 
    425         return new TrPrBase(); 
    426     } 
    427  
    428     /** 
    429      * Create an instance of {@link R } 
    430      *  
    431      */ 
    432     public R createR() { 
    433         return new R(); 
    434     } 
    435  
    436     /** 
    437      * Create an instance of {@link LastRenderedPageBreak } 
    438      *  
    439      */ 
    440     public LastRenderedPageBreak createLastRenderedPageBreak() { 
    441         return new LastRenderedPageBreak(); 
    442     } 
    443  
    444     /** 
    445      * Create an instance of {@link TcType } 
    446      *  
    447      */ 
    448     public TcType createTcType() { 
    449         return new TcType(); 
    450     } 
    451  
    452     /** 
    453      * Create an instance of {@link CTPageNumber } 
    454      *  
    455      */ 
    456     public CTPageNumber createCTPageNumber() { 
    457         return new CTPageNumber(); 
    458     } 
    459  
    460     /** 
    461      * Create an instance of {@link Br } 
    462      *  
    463      */ 
    464     public Br createBr() { 
    465         return new Br(); 
    466     } 
    467  
    468     /** 
    469      * Create an instance of {@link TrPr } 
    470      *  
    471      */ 
    472     public TrPr createTrPr() { 
    473         return new TrPr(); 
    474     } 
    475  
    476     /** 
    477      * Create an instance of {@link SdtPr.Alias } 
    478      *  
    479      */ 
    480     public SdtPr.Alias createSdtPrAlias() { 
    481         return new SdtPr.Alias(); 
    482     } 
    483  
    484     /** 
    485      * Create an instance of {@link YearLong } 
    486      *  
    487      */ 
    488     public YearLong createYearLong() { 
    489         return new YearLong(); 
    490     } 
    491  
    492     /** 
    493      * Create an instance of {@link MonthShort } 
    494      *  
    495      */ 
    496     public MonthShort createMonthShort() { 
    497         return new MonthShort(); 
    498     } 
    499  
    500     /** 
    501      * Create an instance of {@link P } 
    502      *  
    503      */ 
    504     public P createP() { 
    505         return new P(); 
    506     } 
    507  
    508     /** 
    509      * Create an instance of {@link CTRPr } 
    510      *  
    511      */ 
    512     public CTRPr createCTRPr() { 
    513         return new CTRPr(); 
    514     } 
    515  
    516     /** 
    517      * Create an instance of {@link CTNumPr } 
    518      *  
    519      */ 
    520     public CTNumPr createCTNumPr() { 
    521         return new CTNumPr(); 
    522     } 
    523  
    524     /** 
    525      * Create an instance of {@link Lock } 
    526      *  
    527      */ 
    528     public Lock createLock() { 
    529         return new Lock(); 
    530     } 
    531  
    532     /** 
    533      * Create an instance of {@link CTVerticalJc } 
    534      *  
    535      */ 
    536     public CTVerticalJc createCTVerticalJc() { 
    537         return new CTVerticalJc(); 
    538     } 
    539  
    540     /** 
    541      * Create an instance of {@link Left } 
    542      *  
    543      */ 
    544     public Left createLeft() { 
    545         return new Left(); 
    546     } 
    547  
    548     /** 
    549      * Create an instance of {@link SdtContentBlock } 
    550      *  
    551      */ 
    552     public SdtContentBlock createSdtContentBlock() { 
    553         return new SdtContentBlock(); 
    554     } 
    555  
    556     /** 
    557      * Create an instance of {@link Tl2Br } 
    558      *  
    559      */ 
    560     public Tl2Br createTl2Br() { 
    561         return new Tl2Br(); 
    562     } 
    563  
    564     /** 
    565      * Create an instance of {@link CTHighlight } 
    566      *  
    567      */ 
    568     public CTHighlight createCTHighlight() { 
    569         return new CTHighlight(); 
    570     } 
    571  
    572     /** 
    573      * Create an instance of {@link HMerge } 
    574      *  
    575      */ 
    576     public HMerge createHMerge() { 
    577         return new HMerge(); 
    578     } 
    579  
    580     /** 
    581      * Create an instance of {@link RunTrackChange } 
    582      *  
    583      */ 
    584     public RunTrackChange createRunTrackChange() { 
    585         return new RunTrackChange(); 
    586     } 
    587  
    588     /** 
    589      * Create an instance of {@link ContinuationSeparator } 
    590      *  
    591      */ 
    592     public ContinuationSeparator createContinuationSeparator() { 
    593         return new ContinuationSeparator(); 
    594     } 
    595  
    596     /** 
    597      * Create an instance of {@link PgNum } 
    598      *  
    599      */ 
    600     public PgNum createPgNum() { 
    601         return new PgNum(); 
    602     } 
    603  
    604     /** 
    605      * Create an instance of {@link Bottom } 
    606      *  
    607      */ 
    608     public Bottom createBottom() { 
    609         return new Bottom(); 
    610     } 
    611  
    612     /** 
    613      * Create an instance of {@link SdtPr.Tag } 
    614      *  
    615      */ 
    616     public SdtPr.Tag createSdtPrTag() { 
    617         return new SdtPr.Tag(); 
    618     } 
    619  
    620     /** 
    621      * Create an instance of {@link CTJc } 
    622      *  
    623      */ 
    624     public CTJc createCTJc() { 
    625         return new CTJc(); 
    626     } 
    627  
    628     /** 
    629      * Create an instance of {@link TblPrExBase } 
    630      *  
    631      */ 
    632     public TblPrExBase createTblPrExBase() { 
    633         return new TblPrExBase(); 
    634     } 
    635  
    636     /** 
    637      * Create an instance of {@link CTSectType } 
    638      *  
    639      */ 
    640     public CTSectType createCTSectType() { 
    641         return new CTSectType(); 
    642     } 
    643  
    644     /** 
    645      * Create an instance of {@link Row } 
    646      *  
    647      */ 
    648     public Row createRow() { 
    649         return new Row(); 
    650     } 
    651  
    652     /** 
    653      * Create an instance of {@link VMerge } 
    654      *  
    655      */ 
    656     public VMerge createVMerge() { 
    657         return new VMerge(); 
    658     } 
    659  
    660     /** 
    661      * Create an instance of {@link CTInd } 
    662      *  
    663      */ 
    664     public CTInd createCTInd() { 
    665         return new CTInd(); 
    666     } 
    667  
    668     /** 
    669      * Create an instance of {@link TblPr } 
    670      *  
    671      */ 
    672     public TblPr createTblPr() { 
    673         return new TblPr(); 
    674     } 
    675  
    676     /** 
    677      * Create an instance of {@link DayShort } 
    678      *  
    679      */ 
    680     public DayShort createDayShort() { 
    681         return new DayShort(); 
    682     } 
    683  
    684     /** 
    685      * Create an instance of {@link TcPr } 
    686      *  
    687      */ 
    688     public TcPr createTcPr() { 
    689         return new TcPr(); 
    690     } 
    691  
    692     /** 
    693      * Create an instance of {@link Right } 
    694      *  
    695      */ 
    696     public Right createRight() { 
    697         return new Right(); 
    698     } 
    699  
    700     /** 
    701      * Create an instance of {@link SdtPr } 
    702      *  
    703      */ 
    704     public SdtPr createSdtPr() { 
    705         return new SdtPr(); 
    706706    } 
    707707 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/P.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1313import javax.annotation.Generated; 
    1414import javax.xml.bind.JAXBElement; 
     15import javax.xml.bind.Unmarshaller; 
    1516import javax.xml.bind.annotation.XmlAccessType; 
    1617import javax.xml.bind.annotation.XmlAccessorType; 
     
    2122import com.sun.xml.bind.Locatable; 
    2223import com.sun.xml.bind.annotation.XmlLocation; 
     24import org.jvnet.jaxb2_commons.ppp.Child; 
    2325import org.xml.sax.Locator; 
    2426 
     
    5052    "paragraphContent" 
    5153}) 
    52 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    53 public class P implements Locatable 
     54@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55public class P implements Locatable, Child 
    5456{ 
    5557 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs")       
     58    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5759    protected PPr pPr; 
    5860     
    5961    @XmlAnyElement     
    6062    @XmlElementRefs({ 
     63        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6164        @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
    62         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6365        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    6466    }) 
    65 //    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67//    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6668    protected List<Object> paragraphContent; 
     69    @XmlTransient 
     70    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    private Object parent; 
    6772    @XmlLocation 
    6873    @XmlTransient 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     74    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7075    protected Locator locator; 
    7176 
     
    7883     *      
    7984     */ 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8186    public PPr getPPr() { 
    8287        return pPr; 
     
    9196     *      
    9297     */ 
    93     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     98    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9499    public void setPPr(PPr value) { 
    95100        this.pPr = value; 
     
    114119     * <p> 
    115120     * Objects of the following type(s) are allowed in the list 
     121     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    116122     * {@link R } 
    117      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    118123     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    119124     *  
    120125     *  
    121126     */ 
    122     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     127    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    123128    public List<Object> getParagraphContent() { 
    124129        if (paragraphContent == null) { 
     
    128133    } 
    129134 
    130     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     135    /** 
     136     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     137     *  
     138     * @return 
     139     *     The parent object. 
     140     */ 
     141    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    public Object getParent() { 
     143        return this.parent; 
     144    } 
     145 
     146    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     147    public void setParent(Object parent) { 
     148        this.parent = parent; 
     149    } 
     150 
     151    /** 
     152     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     153     *  
     154     * @param parent 
     155     *     The parent object in the object tree. 
     156     * @param unmarshaller 
     157     *     The unmarshaller that generated the instance. 
     158     */ 
     159    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     160    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     161        setParent(parent); 
     162    } 
     163 
     164    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    131165    public Locator sourceLocation() { 
    132166        return locator; 
    133167    } 
    134168 
    135     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     169    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    136170    public void setSourceLocation(Locator newLocator) { 
    137171        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/PPr.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    5860    "sectPr" 
    5961}) 
    60 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6163public class PPr 
    62     implements Locatable 
     64    implements Locatable, Child 
    6365{ 
    6466 
    65     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6668    protected PPr.PStyle pStyle; 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected CTOnOff keepNext; 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7072    protected CTOnOff keepLines; 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected CTOnOff pageBreakBefore; 
    73     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     75    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7476    protected CTNumPr numPr; 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected Tabs tabs; 
    77     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7880    protected CTSpacing spacing; 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected CTInd ind; 
    81     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     83    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8284    protected CTJc jc; 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected CTDecimalNumber outlineLvl; 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8688    protected CTRPr rPr; 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8890    protected SectPr sectPr; 
     91    @XmlTransient 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     93    private Object parent; 
    8994    @XmlLocation 
    9095    @XmlTransient 
    91     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     96    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9297    protected Locator locator; 
    9398 
     
    100105     *      
    101106     */ 
    102     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     107    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    103108    public PPr.PStyle getPStyle() { 
    104109        return pStyle; 
     
    113118     *      
    114119     */ 
    115     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     120    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    116121    public void setPStyle(PPr.PStyle value) { 
    117122        this.pStyle = value; 
     
    126131     *      
    127132     */ 
    128     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     133    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    129134    public CTOnOff getKeepNext() { 
    130135        return keepNext; 
     
    139144     *      
    140145     */ 
    141     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     146    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    142147    public void setKeepNext(CTOnOff value) { 
    143148        this.keepNext = value; 
     
    152157     *      
    153158     */ 
    154     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     159    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    155160    public CTOnOff getKeepLines() { 
    156161        return keepLines; 
     
    165170     *      
    166171     */ 
    167     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     172    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    168173    public void setKeepLines(CTOnOff value) { 
    169174        this.keepLines = value; 
     
    178183     *      
    179184     */ 
    180     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     185    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    181186    public CTOnOff getPageBreakBefore() { 
    182187        return pageBreakBefore; 
     
    191196     *      
    192197     */ 
    193     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     198    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    194199    public void setPageBreakBefore(CTOnOff value) { 
    195200        this.pageBreakBefore = value; 
     
    204209     *      
    205210     */ 
    206     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     211    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    207212    public CTNumPr getNumPr() { 
    208213        return numPr; 
     
    217222     *      
    218223     */ 
    219     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     224    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    220225    public void setNumPr(CTNumPr value) { 
    221226        this.numPr = value; 
     
    230235     *      
    231236     */ 
    232     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     237    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    233238    public Tabs getTabs() { 
    234239        return tabs; 
     
    243248     *      
    244249     */ 
    245     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     250    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    246251    public void setTabs(Tabs value) { 
    247252        this.tabs = value; 
     
    256261     *      
    257262     */ 
    258     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     263    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    259264    public CTSpacing getSpacing() { 
    260265        return spacing; 
     
    269274     *      
    270275     */ 
    271     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     276    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    272277    public void setSpacing(CTSpacing value) { 
    273278        this.spacing = value; 
     
    282287     *      
    283288     */ 
    284     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     289    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    285290    public CTInd getInd() { 
    286291        return ind; 
     
    295300     *      
    296301     */ 
    297     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     302    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    298303    public void setInd(CTInd value) { 
    299304        this.ind = value; 
     
    308313     *      
    309314     */ 
    310     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     315    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    311316    public CTJc getJc() { 
    312317        return jc; 
     
    321326     *      
    322327     */ 
    323     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     328    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    324329    public void setJc(CTJc value) { 
    325330        this.jc = value; 
     
    334339     *      
    335340     */ 
    336     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    337342    public CTDecimalNumber getOutlineLvl() { 
    338343        return outlineLvl; 
     
    347352     *      
    348353     */ 
    349     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    350355    public void setOutlineLvl(CTDecimalNumber value) { 
    351356        this.outlineLvl = value; 
     
    360365     *      
    361366     */ 
    362     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     367    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    363368    public CTRPr getRPr() { 
    364369        return rPr; 
     
    373378     *      
    374379     */ 
    375     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     380    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    376381    public void setRPr(CTRPr value) { 
    377382        this.rPr = value; 
     
    386391     *      
    387392     */ 
    388     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     393    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    389394    public SectPr getSectPr() { 
    390395        return sectPr; 
     
    399404     *      
    400405     */ 
    401     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     406    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    402407    public void setSectPr(SectPr value) { 
    403408        this.sectPr = value; 
    404409    } 
    405410 
    406     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     411    /** 
     412     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     413     *  
     414     * @return 
     415     *     The parent object. 
     416     */ 
     417    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     418    public Object getParent() { 
     419        return this.parent; 
     420    } 
     421 
     422    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     423    public void setParent(Object parent) { 
     424        this.parent = parent; 
     425    } 
     426 
     427    /** 
     428     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     429     *  
     430     * @param parent 
     431     *     The parent object in the object tree. 
     432     * @param unmarshaller 
     433     *     The unmarshaller that generated the instance. 
     434     */ 
     435    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     436    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     437        setParent(parent); 
     438    } 
     439 
     440    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    407441    public Locator sourceLocation() { 
    408442        return locator; 
    409443    } 
    410444 
    411     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     445    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    412446    public void setSourceLocation(Locator newLocator) { 
    413447        locator = newLocator; 
     
    434468    @XmlAccessorType(XmlAccessType.FIELD) 
    435469    @XmlType(name = "") 
    436     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     470    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    437471    public static class PStyle 
    438         implements Locatable 
     472        implements Locatable, Child 
    439473    { 
    440474 
    441475        @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    442         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     476        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    443477        protected String val; 
     478        @XmlTransient 
     479        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     480        private Object parent; 
    444481        @XmlLocation 
    445482        @XmlTransient 
    446         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     483        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    447484        protected Locator locator; 
    448485 
     
    455492         *      
    456493         */ 
    457         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     494        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    458495        public String getVal() { 
    459496            return val; 
     
    468505         *      
    469506         */ 
    470         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     507        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    471508        public void setVal(String value) { 
    472509            this.val = value; 
    473510        } 
    474511 
    475         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     512        /** 
     513         * Gets the parent object in the object tree representing the unmarshalled xml document. 
     514         *  
     515         * @return 
     516         *     The parent object. 
     517         */ 
     518        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     519        public Object getParent() { 
     520            return this.parent; 
     521        } 
     522 
     523        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     524        public void setParent(Object parent) { 
     525            this.parent = parent; 
     526        } 
     527 
     528        /** 
     529         * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     530         *  
     531         * @param parent 
     532         *     The parent object in the object tree. 
     533         * @param unmarshaller 
     534         *     The unmarshaller that generated the instance. 
     535         */ 
     536        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     537        public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     538            setParent(parent); 
     539        } 
     540 
     541        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    476542        public Locator sourceLocation() { 
    477543            return locator; 
    478544        } 
    479545 
    480         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     546        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    481547        public void setSourceLocation(Locator newLocator) { 
    482548            locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/PgNum.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "pgNum") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class PgNum 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Ptab.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "ptab") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Ptab 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String alignment; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String relativeTo; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String leader; 
     63    @XmlTransient 
     64    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    private Object parent; 
    6166    @XmlLocation 
    6267    @XmlTransient 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6469    protected Locator locator; 
    6570 
     
    7277     *      
    7378     */ 
    74     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7580    public String getAlignment() { 
    7681        return alignment; 
     
    8590     *      
    8691     */ 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    public void setAlignment(String value) { 
    8994        this.alignment = value; 
     
    98103     *      
    99104     */ 
    100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     105    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    101106    public String getRelativeTo() { 
    102107        return relativeTo; 
     
    111116     *      
    112117     */ 
    113     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     118    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    114119    public void setRelativeTo(String value) { 
    115120        this.relativeTo = value; 
     
    124129     *      
    125130     */ 
    126     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     131    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    127132    public String getLeader() { 
    128133        return leader; 
     
    137142     *      
    138143     */ 
    139     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     144    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    140145    public void setLeader(String value) { 
    141146        this.leader = value; 
    142147    } 
    143148 
    144     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     149    /** 
     150     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     151     *  
     152     * @return 
     153     *     The parent object. 
     154     */ 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     156    public Object getParent() { 
     157        return this.parent; 
     158    } 
     159 
     160    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     161    public void setParent(Object parent) { 
     162        this.parent = parent; 
     163    } 
     164 
     165    /** 
     166     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     167     *  
     168     * @param parent 
     169     *     The parent object in the object tree. 
     170     * @param unmarshaller 
     171     *     The unmarshaller that generated the instance. 
     172     */ 
     173    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     174    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     175        setParent(parent); 
     176    } 
     177 
     178    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    145179    public Locator sourceLocation() { 
    146180        return locator; 
    147181    } 
    148182 
    149     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     183    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    150184    public void setSourceLocation(Locator newLocator) { 
    151185        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/R.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1313import javax.annotation.Generated; 
    1414import javax.xml.bind.JAXBElement; 
     15import javax.xml.bind.Unmarshaller; 
    1516import javax.xml.bind.annotation.XmlAccessType; 
    1617import javax.xml.bind.annotation.XmlAccessorType; 
     
    2223import com.sun.xml.bind.Locatable; 
    2324import com.sun.xml.bind.annotation.XmlLocation; 
     25import org.jvnet.jaxb2_commons.ppp.Child; 
    2426import org.xml.sax.Locator; 
    2527 
     
    5355}) 
    5456@XmlRootElement(name = "r") 
    55 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    56 public class R implements Locatable 
     57@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     58public class R implements Locatable, Child 
    5759{ 
    5860 
    5961    @XmlElementRef(name = "EG_RPr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    60     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6163    protected JAXBElement<CTRPr> rPr; 
    6264    @XmlElementRefs({ 
     65        @XmlElementRef(name = "softHyphen", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SoftHyphen.class), 
     66        @XmlElementRef(name = "instrText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "delInstrText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6368        @XmlElementRef(name = "delText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "noBreakHyphen", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = NoBreakHyphen.class), 
     70        @XmlElementRef(name = "t", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6471        @XmlElementRef(name = "cr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Cr.class), 
    65         @XmlElementRef(name = "softHyphen", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SoftHyphen.class), 
    66         @XmlElementRef(name = "delInstrText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "t", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "br", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Br.class), 
    69         @XmlElementRef(name = "instrText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "noBreakHyphen", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = NoBreakHyphen.class) 
     72        @XmlElementRef(name = "br", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Br.class) 
    7173    }) 
    72     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     74    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7375    protected List<Object> runContent; 
     76    @XmlTransient 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     78    private Object parent; 
    7479    @XmlLocation 
    7580    @XmlTransient 
    76     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7782    protected Locator locator; 
    7883 
     
    8287     * @return 
    8388     *     possible object is 
     89     *     {@link JAXBElement }{@code <}{@link CTRPr }{@code >} 
    8490     *     {@link RPrZZ } 
    85      *     {@link JAXBElement }{@code <}{@link CTRPr }{@code >} 
    8691     *      
    8792     */ 
    88     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     93    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8994    public JAXBElement<CTRPr> getRPr() { 
    9095        return rPr; 
     
    96101     * @param value 
    97102     *     allowed object is 
     103     *     {@link JAXBElement }{@code <}{@link CTRPr }{@code >} 
    98104     *     {@link RPrZZ } 
    99      *     {@link JAXBElement }{@code <}{@link CTRPr }{@code >} 
    100105     *      
    101106     */ 
    102     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     107    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    103108    public void setRPr(JAXBElement<CTRPr> value) { 
    104109        this.rPr = ((JAXBElement<CTRPr> ) value); 
     
    123128     * <p> 
    124129     * Objects of the following type(s) are allowed in the list 
    125      * {@link JAXBElement }{@code <}{@link Text }{@code >} 
    126      * {@link Cr } 
    127130     * {@link SoftHyphen } 
    128131     * {@link JAXBElement }{@code <}{@link Text }{@code >} 
    129132     * {@link JAXBElement }{@code <}{@link Text }{@code >} 
    130      * {@link Br } 
    131133     * {@link JAXBElement }{@code <}{@link Text }{@code >} 
    132134     * {@link NoBreakHyphen } 
     135     * {@link JAXBElement }{@code <}{@link Text }{@code >} 
     136     * {@link Cr } 
     137     * {@link Br } 
    133138     *  
    134139     *  
    135140     */ 
    136     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     141    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    137142    public List<Object> getRunContent() { 
    138143        if (runContent == null) { 
     
    142147    } 
    143148 
    144     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     149    /** 
     150     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     151     *  
     152     * @return 
     153     *     The parent object. 
     154     */ 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     156    public Object getParent() { 
     157        return this.parent; 
     158    } 
     159 
     160    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     161    public void setParent(Object parent) { 
     162        this.parent = parent; 
     163    } 
     164 
     165    /** 
     166     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     167     *  
     168     * @param parent 
     169     *     The parent object in the object tree. 
     170     * @param unmarshaller 
     171     *     The unmarshaller that generated the instance. 
     172     */ 
     173    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     174    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     175        setParent(parent); 
     176    } 
     177 
     178    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    145179    public Locator sourceLocation() { 
    146180        return locator; 
    147181    } 
    148182 
    149     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     183    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    150184    public void setSourceLocation(Locator newLocator) { 
    151185        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/RPrZZ.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Right.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "right") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Right 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String color; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String themeColor; 
    6163    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6264    @XmlSchemaType(name = "anySimpleType") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String themeTint; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6668    @XmlSchemaType(name = "anySimpleType") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected String themeShade; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7072    @XmlSchemaType(name = "anySimpleType") 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected String sz; 
    7375    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7476    @XmlSchemaType(name = "anySimpleType") 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected String space; 
    7779    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7880    @XmlSchemaType(name = "anySimpleType") 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected String shadow; 
    8183    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    8284    @XmlSchemaType(name = "anySimpleType") 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected String frame; 
     87    @XmlTransient 
     88    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    private Object parent; 
    8590    @XmlLocation 
    8691    @XmlTransient 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    protected Locator locator; 
    8994 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public String getVal() { 
    100105        return val; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112117    public void setVal(String value) { 
    113118        this.val = value; 
     
    122127     *      
    123128     */ 
    124     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    125130    public String getColor() { 
    126131        return color; 
     
    135140     *      
    136141     */ 
    137     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    138143    public void setColor(String value) { 
    139144        this.color = value; 
     
    148153     *      
    149154     */ 
    150     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    151156    public String getThemeColor() { 
    152157        return themeColor; 
     
    161166     *      
    162167     */ 
    163     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     168    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    164169    public void setThemeColor(String value) { 
    165170        this.themeColor = value; 
     
    174179     *      
    175180     */ 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     181    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177182    public String getThemeTint() { 
    178183        return themeTint; 
     
    187192     *      
    188193     */ 
    189     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     194    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    190195    public void setThemeTint(String value) { 
    191196        this.themeTint = value; 
     
    200205     *      
    201206     */ 
    202     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     207    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    203208    public String getThemeShade() { 
    204209        return themeShade; 
     
    213218     *      
    214219     */ 
    215     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     220    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    216221    public void setThemeShade(String value) { 
    217222        this.themeShade = value; 
     
    226231     *      
    227232     */ 
    228     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     233    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    229234    public String getSz() { 
    230235        return sz; 
     
    239244     *      
    240245     */ 
    241     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     246    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    242247    public void setSz(String value) { 
    243248        this.sz = value; 
     
    252257     *      
    253258     */ 
    254     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     259    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    255260    public String getSpace() { 
    256261        return space; 
     
    265270     *      
    266271     */ 
    267     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     272    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    268273    public void setSpace(String value) { 
    269274        this.space = value; 
     
    278283     *      
    279284     */ 
    280     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     285    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    281286    public String getShadow() { 
    282287        return shadow; 
     
    291296     *      
    292297     */ 
    293     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     298    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    294299    public void setShadow(String value) { 
    295300        this.shadow = value; 
     
    304309     *      
    305310     */ 
    306     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     311    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    307312    public String getFrame() { 
    308313        return frame; 
     
    317322     *      
    318323     */ 
    319     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     324    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    320325    public void setFrame(String value) { 
    321326        this.frame = value; 
    322327    } 
    323328 
    324     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     329    /** 
     330     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     331     *  
     332     * @return 
     333     *     The parent object. 
     334     */ 
     335    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336    public Object getParent() { 
     337        return this.parent; 
     338    } 
     339 
     340    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341    public void setParent(Object parent) { 
     342        this.parent = parent; 
     343    } 
     344 
     345    /** 
     346     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     347     *  
     348     * @param parent 
     349     *     The parent object in the object tree. 
     350     * @param unmarshaller 
     351     *     The unmarshaller that generated the instance. 
     352     */ 
     353    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     355        setParent(parent); 
     356    } 
     357 
     358    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    325359    public Locator sourceLocation() { 
    326360        return locator; 
    327361    } 
    328362 
    329     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     363    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    330364    public void setSourceLocation(Locator newLocator) { 
    331365        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Row.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1212import java.util.List; 
    1313import javax.annotation.Generated; 
     14import javax.xml.bind.Unmarshaller; 
    1415import javax.xml.bind.annotation.XmlAccessType; 
    1516import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4951    "egContentCellContent" 
    5052}) 
    51 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254public class Row 
    53     implements Locatable 
     55    implements Locatable, Child 
    5456{ 
    5557 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     58    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5759    protected TblPrEx tblPrEx; 
    58     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     60    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5961    protected TrPr trPr; 
    6062    @XmlElement(name = "tc") 
    61     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6264    protected List<TcType> egContentCellContent; 
     65    @XmlTransient 
     66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    private Object parent; 
    6368    @XmlLocation 
    6469    @XmlTransient 
    65     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     70    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6671    protected Locator locator; 
    6772 
     
    7479     *      
    7580     */ 
    76     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7782    public TblPrEx getTblPrEx() { 
    7883        return tblPrEx; 
     
    8792     *      
    8893     */ 
    89     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     94    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9095    public void setTblPrEx(TblPrEx value) { 
    9196        this.tblPrEx = value; 
     
    100105     *      
    101106     */ 
    102     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     107    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    103108    public TrPr getTrPr() { 
    104109        return trPr; 
     
    113118     *      
    114119     */ 
    115     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     120    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    116121    public void setTrPr(TrPr value) { 
    117122        this.trPr = value; 
     
    140145     *  
    141146     */ 
    142     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     147    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    143148    public List<TcType> getEGContentCellContent() { 
    144149        if (egContentCellContent == null) { 
     
    148153    } 
    149154 
    150     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    /** 
     156     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     157     *  
     158     * @return 
     159     *     The parent object. 
     160     */ 
     161    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     162    public Object getParent() { 
     163        return this.parent; 
     164    } 
     165 
     166    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     167    public void setParent(Object parent) { 
     168        this.parent = parent; 
     169    } 
     170 
     171    /** 
     172     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     173     *  
     174     * @param parent 
     175     *     The parent object in the object tree. 
     176     * @param unmarshaller 
     177     *     The unmarshaller that generated the instance. 
     178     */ 
     179    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     180    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     181        setParent(parent); 
     182    } 
     183 
     184    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    151185    public Locator sourceLocation() { 
    152186        return locator; 
    153187    } 
    154188 
    155     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     189    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    156190    public void setSourceLocation(Locator newLocator) { 
    157191        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/RunTrackChange.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1313import javax.annotation.Generated; 
    1414import javax.xml.bind.JAXBElement; 
     15import javax.xml.bind.Unmarshaller; 
    1516import javax.xml.bind.annotation.XmlAccessType; 
    1617import javax.xml.bind.annotation.XmlAccessorType; 
     
    2324import com.sun.xml.bind.Locatable; 
    2425import com.sun.xml.bind.annotation.XmlLocation; 
     26import org.jvnet.jaxb2_commons.ppp.Child; 
    2527import org.xml.sax.Locator; 
    2628 
     
    4850    "egContentRunContent" 
    4951}) 
    50 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    51 public class RunTrackChange implements Locatable 
     52@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53public class RunTrackChange implements Locatable, Child 
    5254{ 
    5355 
    5456    @XmlElementRefs({ 
     57        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    5558        @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
    56         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    5759        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    5860    }) 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected List<Object> egContentRunContent; 
    6163    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    6264    @XmlSchemaType(name = "anySimpleType") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String author; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6668    @XmlSchemaType(name = "anySimpleType") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected String date; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    7072    @XmlSchemaType(name = "anySimpleType") 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected String id; 
     75    @XmlTransient 
     76    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    private Object parent; 
    7378    @XmlLocation 
    7479    @XmlTransient 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7681    protected Locator locator; 
    7782 
     
    9499     * <p> 
    95100     * Objects of the following type(s) are allowed in the list 
     101     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    96102     * {@link R } 
    97103     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    98      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    99      *  
    100      *  
    101      */ 
    102     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     104     *  
     105     *  
     106     */ 
     107    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    103108    public List<Object> getEGContentRunContent() { 
    104109        if (egContentRunContent == null) { 
     
    116121     *      
    117122     */ 
    118     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     123    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    119124    public String getAuthor() { 
    120125        return author; 
     
    129134     *      
    130135     */ 
    131     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     136    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    132137    public void setAuthor(String value) { 
    133138        this.author = value; 
     
    142147     *      
    143148     */ 
    144     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     149    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    145150    public String getDate() { 
    146151        return date; 
     
    155160     *      
    156161     */ 
    157     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     162    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    158163    public void setDate(String value) { 
    159164        this.date = value; 
     
    168173     *      
    169174     */ 
    170     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     175    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    171176    public String getId() { 
    172177        return id; 
     
    181186     *      
    182187     */ 
    183     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     188    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    184189    public void setId(String value) { 
    185190        this.id = value; 
    186191    } 
    187192 
    188     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     193    /** 
     194     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     195     *  
     196     * @return 
     197     *     The parent object. 
     198     */ 
     199    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     200    public Object getParent() { 
     201        return this.parent; 
     202    } 
     203 
     204    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     205    public void setParent(Object parent) { 
     206        this.parent = parent; 
     207    } 
     208 
     209    /** 
     210     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     211     *  
     212     * @param parent 
     213     *     The parent object in the object tree. 
     214     * @param unmarshaller 
     215     *     The unmarshaller that generated the instance. 
     216     */ 
     217    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     218    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     219        setParent(parent); 
     220    } 
     221 
     222    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    189223    public Locator sourceLocation() { 
    190224        return locator; 
    191225    } 
    192226 
    193     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     227    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    194228    public void setSourceLocation(Locator newLocator) { 
    195229        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STChapterSep.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    3535@XmlType(name = "ST_ChapterSep") 
    3636@XmlEnum 
    37 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     37@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3838public enum STChapterSep { 
    3939 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STHexColorAuto.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    3131@XmlType(name = "ST_HexColorAuto") 
    3232@XmlEnum 
    33 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     33@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3434public enum STHexColorAuto { 
    3535 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STHighlightColor.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    4747@XmlType(name = "ST_HighlightColor") 
    4848@XmlEnum 
    49 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5050public enum STHighlightColor { 
    5151 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STJc.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    3434@XmlType(name = "ST_Jc") 
    3535@XmlEnum 
    36 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     36@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3737public enum STJc { 
    3838 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STNumberFormat.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    4545@XmlType(name = "ST_NumberFormat") 
    4646@XmlEnum 
    47 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     47@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4848public enum STNumberFormat { 
    4949 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STPageOrientation.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    3232@XmlType(name = "ST_PageOrientation") 
    3333@XmlEnum 
    34 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     34@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3535public enum STPageOrientation { 
    3636 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STSectionMark.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    3535@XmlType(name = "ST_SectionMark") 
    3636@XmlEnum 
    37 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     37@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3838public enum STSectionMark { 
    3939 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STVerticalAlignRun.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    3333@XmlType(name = "ST_VerticalAlignRun") 
    3434@XmlEnum 
    35 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     35@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3636public enum STVerticalAlignRun { 
    3737 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/STVerticalJc.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    3434@XmlType(name = "ST_VerticalJc") 
    3535@XmlEnum 
    36 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     36@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3737public enum STVerticalJc { 
    3838 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/SdtBlock.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1617import com.sun.xml.bind.Locatable; 
    1718import com.sun.xml.bind.annotation.XmlLocation; 
     19import org.jvnet.jaxb2_commons.ppp.Child; 
    1820import org.xml.sax.Locator; 
    1921 
     
    4446    "sdtContent" 
    4547}) 
    46 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    47 public class SdtBlock implements Locatable 
     48@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49public class SdtBlock implements Locatable, Child 
    4850{ 
    4951 
    50     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5153    protected SdtPr sdtPr; 
    52     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     54    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5355    protected SdtContentBlock sdtContent; 
     56    @XmlTransient 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     58    private Object parent; 
    5459    @XmlLocation 
    5560    @XmlTransient 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5762    protected Locator locator; 
    5863 
     
    6570     *      
    6671     */ 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     72    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6873    public SdtPr getSdtPr() { 
    6974        return sdtPr; 
     
    7883     *      
    7984     */ 
    80     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8186    public void setSdtPr(SdtPr value) { 
    8287        this.sdtPr = value; 
     
    9196     *      
    9297     */ 
    93     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     98    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9499    public SdtContentBlock getSdtContent() { 
    95100        return sdtContent; 
     
    104109     *      
    105110     */ 
    106     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     111    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    107112    public void setSdtContent(SdtContentBlock value) { 
    108113        this.sdtContent = value; 
    109114    } 
    110115 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     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-17T02:57:16+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-17T02:57:16+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-17T02:57:16+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-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112146    public Locator sourceLocation() { 
    113147        return locator; 
    114148    } 
    115149 
    116     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     150    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    117151    public void setSourceLocation(Locator newLocator) { 
    118152        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/SdtContentBlock.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1313import javax.annotation.Generated; 
    1414import javax.xml.bind.JAXBElement; 
     15import javax.xml.bind.Unmarshaller; 
    1516import javax.xml.bind.annotation.XmlAccessType; 
    1617import javax.xml.bind.annotation.XmlAccessorType; 
     
    2122import com.sun.xml.bind.Locatable; 
    2223import com.sun.xml.bind.annotation.XmlLocation; 
     24import org.jvnet.jaxb2_commons.ppp.Child; 
    2325import org.xml.sax.Locator; 
    2426 
     
    4547    "egContentBlockContent" 
    4648}) 
    47 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850public class SdtContentBlock 
    49     implements Locatable 
     51    implements Locatable, Child 
    5052{ 
    5153 
    5254    @XmlElementRefs({ 
    5355        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    54         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     56        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    5557        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    5658        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    57         @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     59        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    5860    }) 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected List<JAXBElement<?>> egContentBlockContent; 
     63    @XmlTransient 
     64    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    private Object parent; 
    6166    @XmlLocation 
    6267    @XmlTransient 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6469    protected Locator locator; 
    6570 
     
    8287     * <p> 
    8388     * Objects of the following type(s) are allowed in the list 
     89     * {@link JAXBElement }{@code <}{@link SdtBlock }{@code >} 
    8490     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     91     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    8592     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    8693     * {@link JAXBElement }{@code <}{@link P }{@code >} 
    87      * {@link JAXBElement }{@code <}{@link SdtBlock }{@code >} 
    88      * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    8994     *  
    9095     *  
    9196     */ 
    92     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     97    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    9398    public List<JAXBElement<?>> getEGContentBlockContent() { 
    9499        if (egContentBlockContent == null) { 
     
    98103    } 
    99104 
    100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     105    /** 
     106     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     107     *  
     108     * @return 
     109     *     The parent object. 
     110     */ 
     111    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     112    public Object getParent() { 
     113        return this.parent; 
     114    } 
     115 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     117    public void setParent(Object parent) { 
     118        this.parent = parent; 
     119    } 
     120 
     121    /** 
     122     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     123     *  
     124     * @param parent 
     125     *     The parent object in the object tree. 
     126     * @param unmarshaller 
     127     *     The unmarshaller that generated the instance. 
     128     */ 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     130    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     131        setParent(parent); 
     132    } 
     133 
     134    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    101135    public Locator sourceLocation() { 
    102136        return locator; 
    103137    } 
    104138 
    105     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     139    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    106140    public void setSourceLocation(Locator newLocator) { 
    107141        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/SdtPr.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1212import java.util.List; 
    1313import javax.annotation.Generated; 
     14import javax.xml.bind.Unmarshaller; 
    1415import javax.xml.bind.annotation.XmlAccessType; 
    1516import javax.xml.bind.annotation.XmlAccessorType; 
     
    2122import com.sun.xml.bind.Locatable; 
    2223import com.sun.xml.bind.annotation.XmlLocation; 
     24import org.jvnet.jaxb2_commons.ppp.Child; 
    2325import org.xml.sax.Locator; 
    2426 
     
    6769    "rPrOrAliasOrLock" 
    6870}) 
    69 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7072public class SdtPr 
    71     implements Locatable 
     73    implements Locatable, Child 
    7274{ 
    7375 
    7476    @XmlElements({ 
    75         @XmlElement(name = "lock", type = Lock.class), 
    7677        @XmlElement(name = "alias", type = SdtPr.Alias.class), 
    7778        @XmlElement(name = "tag", type = SdtPr.Tag.class), 
    7879        @XmlElement(name = "id", type = CTDecimalNumber.class), 
    79         @XmlElement(name = "rPr", type = CTRPr.class) 
     80        @XmlElement(name = "rPr", type = CTRPr.class), 
     81        @XmlElement(name = "lock", type = Lock.class) 
    8082    }) 
    81     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     83    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8284    protected List<Object> rPrOrAliasOrLock; 
     85    @XmlTransient 
     86    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    private Object parent; 
    8388    @XmlLocation 
    8489    @XmlTransient 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8691    protected Locator locator; 
    8792 
     
    104109     * <p> 
    105110     * Objects of the following type(s) are allowed in the list 
    106      * {@link Lock } 
    107111     * {@link SdtPr.Alias } 
    108112     * {@link SdtPr.Tag } 
    109113     * {@link CTDecimalNumber } 
    110114     * {@link CTRPr } 
    111      *  
    112      *  
    113      */ 
    114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     115     * {@link Lock } 
     116     *  
     117     *  
     118     */ 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    115120    public List<Object> getRPrOrAliasOrLock() { 
    116121        if (rPrOrAliasOrLock == null) { 
     
    120125    } 
    121126 
    122     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     127    /** 
     128     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     129     *  
     130     * @return 
     131     *     The parent object. 
     132     */ 
     133    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     134    public Object getParent() { 
     135        return this.parent; 
     136    } 
     137 
     138    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     139    public void setParent(Object parent) { 
     140        this.parent = parent; 
     141    } 
     142 
     143    /** 
     144     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     145     *  
     146     * @param parent 
     147     *     The parent object in the object tree. 
     148     * @param unmarshaller 
     149     *     The unmarshaller that generated the instance. 
     150     */ 
     151    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     152    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     153        setParent(parent); 
     154    } 
     155 
     156    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    123157    public Locator sourceLocation() { 
    124158        return locator; 
    125159    } 
    126160 
    127     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     161    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    128162    public void setSourceLocation(Locator newLocator) { 
    129163        locator = newLocator; 
     
    150184    @XmlAccessorType(XmlAccessType.FIELD) 
    151185    @XmlType(name = "") 
    152     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    153     public static class Alias implements Locatable 
     186    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     187    public static class Alias implements Locatable, Child 
    154188    { 
    155189 
    156190        @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    157         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     191        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    158192        protected String val; 
     193        @XmlTransient 
     194        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     195        private Object parent; 
    159196        @XmlLocation 
    160197        @XmlTransient 
    161         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     198        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    162199        protected Locator locator; 
    163200 
     
    170207         *      
    171208         */ 
    172         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     209        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    173210        public String getVal() { 
    174211            return val; 
     
    183220         *      
    184221         */ 
    185         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     222        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    186223        public void setVal(String value) { 
    187224            this.val = value; 
    188225        } 
    189226 
    190         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     227        /** 
     228         * Gets the parent object in the object tree representing the unmarshalled xml document. 
     229         *  
     230         * @return 
     231         *     The parent object. 
     232         */ 
     233        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     234        public Object getParent() { 
     235            return this.parent; 
     236        } 
     237 
     238        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     239        public void setParent(Object parent) { 
     240            this.parent = parent; 
     241        } 
     242 
     243        /** 
     244         * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     245         *  
     246         * @param parent 
     247         *     The parent object in the object tree. 
     248         * @param unmarshaller 
     249         *     The unmarshaller that generated the instance. 
     250         */ 
     251        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     252        public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     253            setParent(parent); 
     254        } 
     255 
     256        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    191257        public Locator sourceLocation() { 
    192258            return locator; 
    193259        } 
    194260 
    195         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     261        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    196262        public void setSourceLocation(Locator newLocator) { 
    197263            locator = newLocator; 
     
    220286    @XmlAccessorType(XmlAccessType.FIELD) 
    221287    @XmlType(name = "") 
    222     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    223     public static class Tag implements Locatable 
     288    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     289    public static class Tag implements Locatable, Child 
    224290    { 
    225291 
    226292        @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    227         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     293        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    228294        protected String val; 
     295        @XmlTransient 
     296        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     297        private Object parent; 
    229298        @XmlLocation 
    230299        @XmlTransient 
    231         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     300        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    232301        protected Locator locator; 
    233302 
     
    240309         *      
    241310         */ 
    242         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     311        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    243312        public String getVal() { 
    244313            return val; 
     
    253322         *      
    254323         */ 
    255         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     324        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    256325        public void setVal(String value) { 
    257326            this.val = value; 
    258327        } 
    259328 
    260         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     329        /** 
     330         * Gets the parent object in the object tree representing the unmarshalled xml document. 
     331         *  
     332         * @return 
     333         *     The parent object. 
     334         */ 
     335        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336        public Object getParent() { 
     337            return this.parent; 
     338        } 
     339 
     340        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341        public void setParent(Object parent) { 
     342            this.parent = parent; 
     343        } 
     344 
     345        /** 
     346         * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     347         *  
     348         * @param parent 
     349         *     The parent object in the object tree. 
     350         * @param unmarshaller 
     351         *     The unmarshaller that generated the instance. 
     352         */ 
     353        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354        public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     355            setParent(parent); 
     356        } 
     357 
     358        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    261359        public Locator sourceLocation() { 
    262360            return locator; 
    263361        } 
    264362 
    265         @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     363        @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    266364        public void setSourceLocation(Locator newLocator) { 
    267365            locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/SectPr.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1617import com.sun.xml.bind.Locatable; 
    1718import com.sun.xml.bind.annotation.XmlLocation; 
     19import org.jvnet.jaxb2_commons.ppp.Child; 
    1820import org.xml.sax.Locator; 
    1921 
     
    4446    "titlePg" 
    4547}) 
    46 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     48@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4749public class SectPr 
    48     implements Locatable 
     50    implements Locatable, Child 
    4951{ 
    5052 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected CTSectType type; 
    53     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5456    protected CTPageSz pgSz; 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected CTPageMar pgMar; 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5860    protected CTPageNumber pgNumType; 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected CTOnOff titlePg; 
     63    @XmlTransient 
     64    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    private Object parent; 
    6166    @XmlLocation 
    6267    @XmlTransient 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6469    protected Locator locator; 
    6570 
     
    7277     *      
    7378     */ 
    74     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7580    public CTSectType getType() { 
    7681        return type; 
     
    8590     *      
    8691     */ 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    public void setType(CTSectType value) { 
    8994        this.type = value; 
     
    98103     *      
    99104     */ 
    100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     105    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    101106    public CTPageSz getPgSz() { 
    102107        return pgSz; 
     
    111116     *      
    112117     */ 
    113     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     118    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    114119    public void setPgSz(CTPageSz value) { 
    115120        this.pgSz = value; 
     
    124129     *      
    125130     */ 
    126     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     131    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    127132    public CTPageMar getPgMar() { 
    128133        return pgMar; 
     
    137142     *      
    138143     */ 
    139     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     144    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    140145    public void setPgMar(CTPageMar value) { 
    141146        this.pgMar = value; 
     
    150155     *      
    151156     */ 
    152     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     157    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    153158    public CTPageNumber getPgNumType() { 
    154159        return pgNumType; 
     
    163168     *      
    164169     */ 
    165     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     170    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    166171    public void setPgNumType(CTPageNumber value) { 
    167172        this.pgNumType = value; 
     
    176181     *      
    177182     */ 
    178     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     183    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    179184    public CTOnOff getTitlePg() { 
    180185        return titlePg; 
     
    189194     *      
    190195     */ 
    191     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     196    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    192197    public void setTitlePg(CTOnOff value) { 
    193198        this.titlePg = value; 
    194199    } 
    195200 
    196     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     201    /** 
     202     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     203     *  
     204     * @return 
     205     *     The parent object. 
     206     */ 
     207    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     208    public Object getParent() { 
     209        return this.parent; 
     210    } 
     211 
     212    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     213    public void setParent(Object parent) { 
     214        this.parent = parent; 
     215    } 
     216 
     217    /** 
     218     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     219     *  
     220     * @param parent 
     221     *     The parent object in the object tree. 
     222     * @param unmarshaller 
     223     *     The unmarshaller that generated the instance. 
     224     */ 
     225    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     226    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     227        setParent(parent); 
     228    } 
     229 
     230    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    197231    public Locator sourceLocation() { 
    198232        return locator; 
    199233    } 
    200234 
    201     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     235    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    202236    public void setSourceLocation(Locator newLocator) { 
    203237        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Separator.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "separator") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4244public class Separator 
    43     implements Locatable 
     45    implements Locatable, Child 
    4446{ 
    4547 
     48    @XmlTransient 
     49    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     50    private Object parent; 
    4651    @XmlLocation 
    4752    @XmlTransient 
    48     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4954    protected Locator locator; 
    5055 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    /** 
     57     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     58     *  
     59     * @return 
     60     *     The parent object. 
     61     */ 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    public Object getParent() { 
     64        return this.parent; 
     65    } 
     66 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    public void setParent(Object parent) { 
     69        this.parent = parent; 
     70    } 
     71 
     72    /** 
     73     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     74     *  
     75     * @param parent 
     76     *     The parent object in the object tree. 
     77     * @param unmarshaller 
     78     *     The unmarshaller that generated the instance. 
     79     */ 
     80    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     82        setParent(parent); 
     83    } 
     84 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5286    public Locator sourceLocation() { 
    5387        return locator; 
    5488    } 
    5589 
    56     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5791    public void setSourceLocation(Locator newLocator) { 
    5892        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Shd.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "shd") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Shd 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String color; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String themeColor; 
    6163    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6264    @XmlSchemaType(name = "anySimpleType") 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected String themeTint; 
    6567    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6668    @XmlSchemaType(name = "anySimpleType") 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected String themeShade; 
    6971    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7072    @XmlSchemaType(name = "anySimpleType") 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected String fill; 
    7375    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7476    @XmlSchemaType(name = "anySimpleType") 
    75     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7678    protected String themeFill; 
    7779    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7880    @XmlSchemaType(name = "anySimpleType") 
    79     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     81    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8082    protected String themeFillTint; 
    8183    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    8284    @XmlSchemaType(name = "anySimpleType") 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     85    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8486    protected String themeFillShade; 
     87    @XmlTransient 
     88    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    private Object parent; 
    8590    @XmlLocation 
    8691    @XmlTransient 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    protected Locator locator; 
    8994 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public String getVal() { 
    100105        return val; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     116    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    112117    public void setVal(String value) { 
    113118        this.val = value; 
     
    122127     *      
    123128     */ 
    124     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    125130    public String getColor() { 
    126131        return color; 
     
    135140     *      
    136141     */ 
    137     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     142    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    138143    public void setColor(String value) { 
    139144        this.color = value; 
     
    148153     *      
    149154     */ 
    150     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    151156    public String getThemeColor() { 
    152157        return themeColor; 
     
    161166     *      
    162167     */ 
    163     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     168    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    164169    public void setThemeColor(String value) { 
    165170        this.themeColor = value; 
     
    174179     *      
    175180     */ 
    176     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     181    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    177182    public String getThemeTint() { 
    178183        return themeTint; 
     
    187192     *      
    188193     */ 
    189     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     194    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    190195    public void setThemeTint(String value) { 
    191196        this.themeTint = value; 
     
    200205     *      
    201206     */ 
    202     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     207    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    203208    public String getThemeShade() { 
    204209        return themeShade; 
     
    213218     *      
    214219     */ 
    215     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     220    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    216221    public void setThemeShade(String value) { 
    217222        this.themeShade = value; 
     
    226231     *      
    227232     */ 
    228     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     233    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    229234    public String getFill() { 
    230235        return fill; 
     
    239244     *      
    240245     */ 
    241     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     246    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    242247    public void setFill(String value) { 
    243248        this.fill = value; 
     
    252257     *      
    253258     */ 
    254     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     259    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    255260    public String getThemeFill() { 
    256261        return themeFill; 
     
    265270     *      
    266271     */ 
    267     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     272    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    268273    public void setThemeFill(String value) { 
    269274        this.themeFill = value; 
     
    278283     *      
    279284     */ 
    280     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     285    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    281286    public String getThemeFillTint() { 
    282287        return themeFillTint; 
     
    291296     *      
    292297     */ 
    293     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     298    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    294299    public void setThemeFillTint(String value) { 
    295300        this.themeFillTint = value; 
     
    304309     *      
    305310     */ 
    306     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     311    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    307312    public String getThemeFillShade() { 
    308313        return themeFillShade; 
     
    317322     *      
    318323     */ 
    319     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     324    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    320325    public void setThemeFillShade(String value) { 
    321326        this.themeFillShade = value; 
    322327    } 
    323328 
    324     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     329    /** 
     330     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     331     *  
     332     * @return 
     333     *     The parent object. 
     334     */ 
     335    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     336    public Object getParent() { 
     337        return this.parent; 
     338    } 
     339 
     340    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     341    public void setParent(Object parent) { 
     342        this.parent = parent; 
     343    } 
     344 
     345    /** 
     346     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     347     *  
     348     * @param parent 
     349     *     The parent object in the object tree. 
     350     * @param unmarshaller 
     351     *     The unmarshaller that generated the instance. 
     352     */ 
     353    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     354    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     355        setParent(parent); 
     356    } 
     357 
     358    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    325359    public Locator sourceLocation() { 
    326360        return locator; 
    327361    } 
    328362 
    329     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     363    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    330364    public void setSourceLocation(Locator newLocator) { 
    331365        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/SoftHyphen.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    3941@XmlType(name = "") 
    4042@XmlRootElement(name = "softHyphen") 
    41 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    42 public class SoftHyphen implements Locatable 
     43@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     44public class SoftHyphen implements Locatable, Child 
    4345{ 
    4446 
     47    @XmlTransient 
     48    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49    private Object parent; 
    4550    @XmlLocation 
    4651    @XmlTransient 
    47     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4853    protected Locator locator; 
    4954 
    50     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    /** 
     56     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     57     *  
     58     * @return 
     59     *     The parent object. 
     60     */ 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    public Object getParent() { 
     63        return this.parent; 
     64    } 
     65 
     66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    public void setParent(Object parent) { 
     68        this.parent = parent; 
     69    } 
     70 
     71    /** 
     72     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     73     *  
     74     * @param parent 
     75     *     The parent object in the object tree. 
     76     * @param unmarshaller 
     77     *     The unmarshaller that generated the instance. 
     78     */ 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     80    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     81        setParent(parent); 
     82    } 
     83 
     84    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5185    public Locator sourceLocation() { 
    5286        return locator; 
    5387    } 
    5488 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     89    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5690    public void setSourceLocation(Locator newLocator) { 
    5791        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Sym.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "sym") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Sym 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String font; 
    5355    @XmlAttribute(name = "char", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String _char; 
     59    @XmlTransient 
     60    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    private Object parent; 
    5762    @XmlLocation 
    5863    @XmlTransient 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     64    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6065    protected Locator locator; 
    6166 
     
    6873     *      
    6974     */ 
    70     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     75    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7176    public String getFont() { 
    7277        return font; 
     
    8186     *      
    8287     */ 
    83     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     88    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8489    public void setFont(String value) { 
    8590        this.font = value; 
     
    9499     *      
    95100     */ 
    96     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     101    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    97102    public String getChar() { 
    98103        return _char; 
     
    107112     *      
    108113     */ 
    109     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     114    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    110115    public void setChar(String value) { 
    111116        this._char = value; 
    112117    } 
    113118 
    114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     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-17T02:57:16+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-17T02:57:16+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-17T02:57:16+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-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    115149    public Locator sourceLocation() { 
    116150        return locator; 
    117151    } 
    118152 
    119     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     153    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    120154    public void setSourceLocation(Locator newLocator) { 
    121155        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Tab.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4244@XmlType(name = "") 
    4345@XmlRootElement(name = "tab") 
    44 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     46@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4547public class Tab 
    46     implements Locatable 
     48    implements Locatable, Child 
    4749{ 
    4850 
    4951    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5052    @XmlSchemaType(name = "anySimpleType") 
    51     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     53    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5254    protected String val; 
    5355    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    5456    @XmlSchemaType(name = "anySimpleType") 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected String leader; 
    5759    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    5860    @XmlSchemaType(name = "anySimpleType") 
    59     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     61    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6062    protected String pos; 
     63    @XmlTransient 
     64    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    private Object parent; 
    6166    @XmlLocation 
    6267    @XmlTransient 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     68    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6469    protected Locator locator; 
    6570 
     
    7277     *      
    7378     */ 
    74     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     79    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7580    public String getVal() { 
    7681        return val; 
     
    8590     *      
    8691     */ 
    87     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     92    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8893    public void setVal(String value) { 
    8994        this.val = value; 
     
    98103     *      
    99104     */ 
    100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     105    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    101106    public String getLeader() { 
    102107        return leader; 
     
    111116     *      
    112117     */ 
    113     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     118    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    114119    public void setLeader(String value) { 
    115120        this.leader = value; 
     
    124129     *      
    125130     */ 
    126     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     131    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    127132    public String getPos() { 
    128133        return pos; 
     
    137142     *      
    138143     */ 
    139     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     144    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    140145    public void setPos(String value) { 
    141146        this.pos = value; 
    142147    } 
    143148 
    144     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     149    /** 
     150     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     151     *  
     152     * @return 
     153     *     The parent object. 
     154     */ 
     155    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     156    public Object getParent() { 
     157        return this.parent; 
     158    } 
     159 
     160    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     161    public void setParent(Object parent) { 
     162        this.parent = parent; 
     163    } 
     164 
     165    /** 
     166     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     167     *  
     168     * @param parent 
     169     *     The parent object in the object tree. 
     170     * @param unmarshaller 
     171     *     The unmarshaller that generated the instance. 
     172     */ 
     173    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     174    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     175        setParent(parent); 
     176    } 
     177 
     178    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    145179    public Locator sourceLocation() { 
    146180        return locator; 
    147181    } 
    148182 
    149     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     183    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    150184    public void setSourceLocation(Locator newLocator) { 
    151185        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Tabs.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1212import java.util.List; 
    1313import javax.annotation.Generated; 
     14import javax.xml.bind.Unmarshaller; 
    1415import javax.xml.bind.annotation.XmlAccessType; 
    1516import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4547    "tab" 
    4648}) 
    47 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     49@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    4850public class Tabs 
    49     implements Locatable 
     51    implements Locatable, Child 
    5052{ 
    5153 
    5254    @XmlElement(required = true) 
    53     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     55    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5456    protected List<Tab> tab; 
     57    @XmlTransient 
     58    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    private Object parent; 
    5560    @XmlLocation 
    5661    @XmlTransient 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5863    protected Locator locator; 
    5964 
     
    8085     *  
    8186     */ 
    82     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     87    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8388    public List<Tab> getTab() { 
    8489        if (tab == null) { 
     
    8893    } 
    8994 
    90     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     95    /** 
     96     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     97     *  
     98     * @return 
     99     *     The parent object. 
     100     */ 
     101    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     102    public Object getParent() { 
     103        return this.parent; 
     104    } 
     105 
     106    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     107    public void setParent(Object parent) { 
     108        this.parent = parent; 
     109    } 
     110 
     111    /** 
     112     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     113     *  
     114     * @param parent 
     115     *     The parent object in the object tree. 
     116     * @param unmarshaller 
     117     *     The unmarshaller that generated the instance. 
     118     */ 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     120    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     121        setParent(parent); 
     122    } 
     123 
     124    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    91125    public Locator sourceLocation() { 
    92126        return locator; 
    93127    } 
    94128 
    95     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     129    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    96130    public void setSourceLocation(Locator newLocator) { 
    97131        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/Tbl.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1212import java.util.List; 
    1313import javax.annotation.Generated; 
     14import javax.xml.bind.Unmarshaller; 
    1415import javax.xml.bind.annotation.XmlAccessType; 
    1516import javax.xml.bind.annotation.XmlAccessorType; 
     
    1920import com.sun.xml.bind.Locatable; 
    2021import com.sun.xml.bind.annotation.XmlLocation; 
     22import org.jvnet.jaxb2_commons.ppp.Child; 
    2123import org.xml.sax.Locator; 
    2224 
     
    4749    "egContentRowContent" 
    4850}) 
    49 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    50 public class Tbl implements Locatable 
     51@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52public class Tbl implements Locatable, Child 
    5153{ 
    5254 
    5355    @XmlElement(required = true) 
    54     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     56    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5557    protected TblPr tblPr; 
    5658    @XmlElement(name = "tr") 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5860    protected List<Row> egContentRowContent; 
     61    @XmlTransient 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    private Object parent; 
    5964    @XmlLocation 
    6065    @XmlTransient 
    61     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6267    protected Locator locator; 
    6368 
     
    7075     *      
    7176     */ 
    72     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7378    public TblPr getTblPr() { 
    7479        return tblPr; 
     
    8388     *      
    8489     */ 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8691    public void setTblPr(TblPr value) { 
    8792        this.tblPr = value; 
     
    110115     *  
    111116     */ 
    112     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     117    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    113118    public List<Row> getEGContentRowContent() { 
    114119        if (egContentRowContent == null) { 
     
    118123    } 
    119124 
    120     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     125    /** 
     126     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     127     *  
     128     * @return 
     129     *     The parent object. 
     130     */ 
     131    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     132    public Object getParent() { 
     133        return this.parent; 
     134    } 
     135 
     136    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     137    public void setParent(Object parent) { 
     138        this.parent = parent; 
     139    } 
     140 
     141    /** 
     142     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     143     *  
     144     * @param parent 
     145     *     The parent object in the object tree. 
     146     * @param unmarshaller 
     147     *     The unmarshaller that generated the instance. 
     148     */ 
     149    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     150    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     151        setParent(parent); 
     152    } 
     153 
     154    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    121155    public Locator sourceLocation() { 
    122156        return locator; 
    123157    } 
    124158 
    125     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     159    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    126160    public void setSourceLocation(Locator newLocator) { 
    127161        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/TblBorders.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    5658    TcBorders.class 
    5759}) 
    58 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     60@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5961public class TblBorders 
    60     implements Locatable 
     62    implements Locatable, Child 
    6163{ 
    6264 
    63     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     65    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6466    protected Top top; 
    65     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     67    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6668    protected Left left; 
    67     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     69    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6870    protected Bottom bottom; 
    69     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     71    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7072    protected Right right; 
    71     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7274    protected InsideH insideH; 
    73     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     75    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7476    protected InsideV insideV; 
     77    @XmlTransient 
     78    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     79    private Object parent; 
    7580    @XmlLocation 
    7681    @XmlTransient 
    77     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     82    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7883    protected Locator locator; 
    7984 
     
    8691     *      
    8792     */ 
    88     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     93    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8994    public Top getTop() { 
    9095        return top; 
     
    99104     *      
    100105     */ 
    101     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     106    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    102107    public void setTop(Top value) { 
    103108        this.top = value; 
     
    112117     *      
    113118     */ 
    114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     119    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    115120    public Left getLeft() { 
    116121        return left; 
     
    125130     *      
    126131     */ 
    127     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     132    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    128133    public void setLeft(Left value) { 
    129134        this.left = value; 
     
    138143     *      
    139144     */ 
    140     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     145    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    141146    public Bottom getBottom() { 
    142147        return bottom; 
     
    151156     *      
    152157     */ 
    153     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     158    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    154159    public void setBottom(Bottom value) { 
    155160        this.bottom = value; 
     
    164169     *      
    165170     */ 
    166     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     171    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    167172    public Right getRight() { 
    168173        return right; 
     
    177182     *      
    178183     */ 
    179     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     184    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    180185    public void setRight(Right value) { 
    181186        this.right = value; 
     
    190195     *      
    191196     */ 
    192     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     197    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    193198    public InsideH getInsideH() { 
    194199        return insideH; 
     
    203208     *      
    204209     */ 
    205     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     210    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    206211    public void setInsideH(InsideH value) { 
    207212        this.insideH = value; 
     
    216221     *      
    217222     */ 
    218     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     223    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    219224    public InsideV getInsideV() { 
    220225        return insideV; 
     
    229234     *      
    230235     */ 
    231     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     236    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    232237    public void setInsideV(InsideV value) { 
    233238        this.insideV = value; 
    234239    } 
    235240 
    236     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     241    /** 
     242     * Gets the parent object in the object tree representing the unmarshalled xml document. 
     243     *  
     244     * @return 
     245     *     The parent object. 
     246     */ 
     247    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     248    public Object getParent() { 
     249        return this.parent; 
     250    } 
     251 
     252    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     253    public void setParent(Object parent) { 
     254        this.parent = parent; 
     255    } 
     256 
     257    /** 
     258     * This method is invoked by the JAXB implementation on each instance when unmarshalling completes. 
     259     *  
     260     * @param parent 
     261     *     The parent object in the object tree. 
     262     * @param unmarshaller 
     263     *     The unmarshaller that generated the instance. 
     264     */ 
     265    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     266    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     267        setParent(parent); 
     268    } 
     269 
     270    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    237271    public Locator sourceLocation() { 
    238272        return locator; 
    239273    } 
    240274 
    241     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     275    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    242276    public void setSourceLocation(Locator newLocator) { 
    243277        locator = newLocator; 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/TblPr.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     15import javax.xml.bind.annotation.XmlTransient; 
    1416import javax.xml.bind.annotation.XmlType; 
     17import org.jvnet.jaxb2_commons.ppp.Child; 
    1518 
    1619 
     
    3336@XmlAccessorType(XmlAccessType.FIELD) 
    3437@XmlType(name = "CT_TblPr") 
    35 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     38@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    3639public class TblPr 
    3740    extends TblPrBase 
     41    implements Child 
    3842{ 
    3943 
     44    @XmlTransient 
     45    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+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-17T02:57:16+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-17T02:57:16+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-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     73    public void afterUnmarshal(Unmarshaller unmarshaller, Object parent) { 
     74        setParent(parent); 
     75    } 
    4076 
    4177} 
  • branches/jaxb/target/generated-sources/org/docx4j/jaxb/document/TblPrBase.java

    r31 r32  
    33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>  
    44// Any modifications to this file will be lost upon recompilation of the source schema.  
    5 // Generated on: 2007.12.17 at 09:57:50 AM GMT+10:00  
     5// Generated on: 2007.12.17 at 02:57:16 PM GMT+10:00  
    66// 
    77 
     
    1010 
    1111import javax.annotation.Generated; 
     12import javax.xml.bind.Unmarshaller; 
    1213import javax.xml.bind.annotation.XmlAccessType; 
    1314import javax.xml.bind.annotation.XmlAccessorType; 
     
    1718import com.sun.xml.bind.Locatable; 
    1819import com.sun.xml.bind.annotation.XmlLocation; 
     20import org.jvnet.jaxb2_commons.ppp.Child; 
    1921import org.xml.sax.Locator; 
    2022 
     
    4850    TblPr.class 
    4951}) 
    50 @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     52@Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5153public class TblPrBase 
    52     implements Locatable 
     54    implements Locatable, Child 
    5355{ 
    5456 
    55     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     57    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5658    protected TblW tblW; 
    57     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     59    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    5860    protected TblBorders tblBorders; 
     61    @XmlTransient 
     62    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     63    private Object parent; 
    5964    @XmlLocation 
    6065    @XmlTransient 
    61     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     66    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    6267    protected Locator locator; 
    6368 
     
    7075     *      
    7176     */ 
    72     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     77    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    7378    public TblW getTblW() { 
    7479        return tblW; 
     
    8388     *      
    8489     */ 
    85     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     90    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    8691    public void setTblW(TblW value) { 
    8792        this.tblW = value; 
     
    96101     *      
    97102     */ 
    98     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
     103    @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T02:57:16+10:00", comments = "JAXB RI v2.1.5-b01-fcs") 
    99104    public TblBorders getTblBorders() { 
    100105        return tblBorders; 
     
    109114     *      
    110115     */ 
    111     @Generated(value = "com.sun.tools.xjc.Driver", date = "2007-12-17T09:57:50+10:00", comments = "JAXB RI v2.1.5-b01-fcs")