Changeset 568


Ignore:
Timestamp:
10/27/08 01:17:56 (4 years ago)
Author:
jharrop
Message:

Regenerated JAXB classes, primarily to improve header/footer handling.
Also changed CT_Hyperlink to P.Hyperlink (though maybe its better not as an inner class)

Location:
trunk/docx4j
Files:
5 added
6 deleted
56 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTAdjustHandleList.java

    r498 r568  
    4343 
    4444    @XmlElements({ 
    45         @XmlElement(name = "ahXY", type = CTXYAdjustHandle.class), 
    46         @XmlElement(name = "ahPolar", type = CTPolarAdjustHandle.class) 
     45        @XmlElement(name = "ahPolar", type = CTPolarAdjustHandle.class), 
     46        @XmlElement(name = "ahXY", type = CTXYAdjustHandle.class) 
    4747    }) 
    4848    protected List<Object> ahXYOrAhPolar; 
     
    6868     * <p> 
    6969     * Objects of the following type(s) are allowed in the list 
     70     * {@link CTPolarAdjustHandle } 
    7071     * {@link CTXYAdjustHandle } 
    71      * {@link CTPolarAdjustHandle } 
    7272     *  
    7373     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTBackgroundFillStyleList.java

    r517 r568  
    4242 
    4343    @XmlElements({ 
    44         @XmlElement(name = "grpFill", type = CTGroupFillProperties.class), 
     44        @XmlElement(name = "pattFill", type = CTPatternFillProperties.class), 
    4545        @XmlElement(name = "blipFill", type = CTBlipFillProperties.class), 
    4646        @XmlElement(name = "gradFill", type = CTGradientFillProperties.class), 
    47         @XmlElement(name = "noFill", type = CTNoFillProperties.class), 
    48         @XmlElement(name = "pattFill", type = CTPatternFillProperties.class), 
    49         @XmlElement(name = "solidFill", type = CTSolidColorFillProperties.class) 
     47        @XmlElement(name = "grpFill", type = CTGroupFillProperties.class), 
     48        @XmlElement(name = "solidFill", type = CTSolidColorFillProperties.class), 
     49        @XmlElement(name = "noFill", type = CTNoFillProperties.class) 
    5050    }) 
    5151    protected List<Object> egFillProperties; 
     
    7171     * <p> 
    7272     * Objects of the following type(s) are allowed in the list 
    73      * {@link CTGroupFillProperties } 
     73     * {@link CTPatternFillProperties } 
    7474     * {@link CTBlipFillProperties } 
    7575     * {@link CTGradientFillProperties } 
     76     * {@link CTGroupFillProperties } 
     77     * {@link CTSolidColorFillProperties } 
    7678     * {@link CTNoFillProperties } 
    77      * {@link CTPatternFillProperties } 
    78      * {@link CTSolidColorFillProperties } 
    7979     *  
    8080     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTBlip.java

    r517 r568  
    6666    @XmlElements({ 
    6767        @XmlElement(name = "blur", type = CTBlurEffect.class), 
     68        @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
     69        @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class), 
     70        @XmlElement(name = "alphaModFix", type = CTAlphaModulateFixedEffect.class), 
     71        @XmlElement(name = "hsl", type = CTHSLEffect.class), 
     72        @XmlElement(name = "alphaMod", type = CTAlphaModulateEffect.class), 
     73        @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
     74        @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
     75        @XmlElement(name = "alphaCeiling", type = CTAlphaCeilingEffect.class), 
     76        @XmlElement(name = "lum", type = CTLuminanceEffect.class), 
    6877        @XmlElement(name = "alphaBiLevel", type = CTAlphaBiLevelEffect.class), 
    69         @XmlElement(name = "hsl", type = CTHSLEffect.class), 
     78        @XmlElement(name = "grayscl", type = CTGrayscaleEffect.class), 
    7079        @XmlElement(name = "alphaInv", type = CTAlphaInverseEffect.class), 
    71         @XmlElement(name = "lum", type = CTLuminanceEffect.class), 
    72         @XmlElement(name = "alphaCeiling", type = CTAlphaCeilingEffect.class), 
    73         @XmlElement(name = "grayscl", type = CTGrayscaleEffect.class), 
    74         @XmlElement(name = "alphaMod", type = CTAlphaModulateEffect.class), 
    75         @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class), 
     80        @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
     81        @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
    7682        @XmlElement(name = "clrChange", type = CTColorChangeEffect.class), 
    77         @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
    78         @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
    79         @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
    80         @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
    81         @XmlElement(name = "tint", type = CTTintEffect.class), 
    82         @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
    83         @XmlElement(name = "alphaModFix", type = CTAlphaModulateFixedEffect.class) 
     83        @XmlElement(name = "tint", type = CTTintEffect.class) 
    8484    }) 
    8585    protected List<Object> alphaBiLevelOrAlphaCeilingOrAlphaFloor; 
     
    113113     * Objects of the following type(s) are allowed in the list 
    114114     * {@link CTBlurEffect } 
     115     * {@link CTFillOverlayEffect } 
     116     * {@link CTColorReplaceEffect } 
     117     * {@link CTAlphaModulateFixedEffect } 
     118     * {@link CTHSLEffect } 
     119     * {@link CTAlphaModulateEffect } 
     120     * {@link CTAlphaReplaceEffect } 
     121     * {@link CTBiLevelEffect } 
     122     * {@link CTAlphaCeilingEffect } 
     123     * {@link CTLuminanceEffect } 
    115124     * {@link CTAlphaBiLevelEffect } 
    116      * {@link CTHSLEffect } 
     125     * {@link CTGrayscaleEffect } 
    117126     * {@link CTAlphaInverseEffect } 
    118      * {@link CTLuminanceEffect } 
    119      * {@link CTAlphaCeilingEffect } 
    120      * {@link CTGrayscaleEffect } 
    121      * {@link CTAlphaModulateEffect } 
    122      * {@link CTColorReplaceEffect } 
     127     * {@link CTDuotoneEffect } 
     128     * {@link CTAlphaFloorEffect } 
    123129     * {@link CTColorChangeEffect } 
    124      * {@link CTBiLevelEffect } 
    125      * {@link CTDuotoneEffect } 
    126      * {@link CTFillOverlayEffect } 
    127      * {@link CTAlphaReplaceEffect } 
    128130     * {@link CTTintEffect } 
    129      * {@link CTAlphaFloorEffect } 
    130      * {@link CTAlphaModulateFixedEffect } 
    131131     *  
    132132     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTColorMRU.java

    r517 r568  
    4242 
    4343    @XmlElements({ 
     44        @XmlElement(name = "prstClr", type = CTPresetColor.class), 
     45        @XmlElement(name = "sysClr", type = CTSystemColor.class), 
    4446        @XmlElement(name = "schemeClr", type = CTSchemeColor.class), 
     47        @XmlElement(name = "srgbClr", type = CTSRgbColor.class), 
    4548        @XmlElement(name = "hslClr", type = CTHslColor.class), 
    46         @XmlElement(name = "srgbClr", type = CTSRgbColor.class), 
    47         @XmlElement(name = "scrgbClr", type = CTScRgbColor.class), 
    48         @XmlElement(name = "prstClr", type = CTPresetColor.class), 
    49         @XmlElement(name = "sysClr", type = CTSystemColor.class) 
     49        @XmlElement(name = "scrgbClr", type = CTScRgbColor.class) 
    5050    }) 
    5151    protected List<Object> egColorChoice; 
     
    7171     * <p> 
    7272     * Objects of the following type(s) are allowed in the list 
    73      * {@link CTSchemeColor } 
    74      * {@link CTHslColor } 
    75      * {@link CTSRgbColor } 
    76      * {@link CTScRgbColor } 
    7773     * {@link CTPresetColor } 
    7874     * {@link CTSystemColor } 
     75     * {@link CTSchemeColor } 
     76     * {@link CTSRgbColor } 
     77     * {@link CTHslColor } 
     78     * {@link CTScRgbColor } 
    7979     *  
    8080     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTDuotoneEffect.java

    r517 r568  
    4141 
    4242    @XmlElements({ 
    43         @XmlElement(name = "scrgbClr", type = CTScRgbColor.class), 
     43        @XmlElement(name = "schemeClr", type = CTSchemeColor.class), 
     44        @XmlElement(name = "sysClr", type = CTSystemColor.class), 
     45        @XmlElement(name = "prstClr", type = CTPresetColor.class), 
     46        @XmlElement(name = "srgbClr", type = CTSRgbColor.class), 
    4447        @XmlElement(name = "hslClr", type = CTHslColor.class), 
    45         @XmlElement(name = "prstClr", type = CTPresetColor.class), 
    46         @XmlElement(name = "schemeClr", type = CTSchemeColor.class), 
    47         @XmlElement(name = "srgbClr", type = CTSRgbColor.class), 
    48         @XmlElement(name = "sysClr", type = CTSystemColor.class) 
     48        @XmlElement(name = "scrgbClr", type = CTScRgbColor.class) 
    4949    }) 
    5050    protected List<Object> egColorChoice; 
     
    7070     * <p> 
    7171     * Objects of the following type(s) are allowed in the list 
     72     * {@link CTSchemeColor } 
     73     * {@link CTSystemColor } 
     74     * {@link CTPresetColor } 
     75     * {@link CTSRgbColor } 
     76     * {@link CTHslColor } 
    7277     * {@link CTScRgbColor } 
    73      * {@link CTHslColor } 
    74      * {@link CTPresetColor } 
    75      * {@link CTSchemeColor } 
    76      * {@link CTSRgbColor } 
    77      * {@link CTSystemColor } 
    7878     *  
    7979     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTEffectContainer.java

    r517 r568  
    4545 
    4646    @XmlElements({ 
    47         @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
    48         @XmlElement(name = "effect", type = CTEffectReference.class), 
    49         @XmlElement(name = "lum", type = CTLuminanceEffect.class), 
    50         @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
    51         @XmlElement(name = "relOff", type = CTRelativeOffsetEffect.class), 
    52         @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
    53         @XmlElement(name = "alphaInv", type = CTAlphaInverseEffect.class), 
    5447        @XmlElement(name = "alphaOutset", type = CTAlphaOutsetEffect.class), 
    55         @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
    56         @XmlElement(name = "hsl", type = CTHSLEffect.class), 
    57         @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
    58         @XmlElement(name = "clrChange", type = CTColorChangeEffect.class), 
    59         @XmlElement(name = "alphaMod", type = CTAlphaModulateEffect.class), 
     48        @XmlElement(name = "xfrm", type = CTTransformEffect.class), 
    6049        @XmlElement(name = "innerShdw", type = CTInnerShadowEffect.class), 
    6150        @XmlElement(name = "alphaModFix", type = CTAlphaModulateFixedEffect.class), 
     51        @XmlElement(name = "relOff", type = CTRelativeOffsetEffect.class), 
    6252        @XmlElement(name = "alphaCeiling", type = CTAlphaCeilingEffect.class), 
     53        @XmlElement(name = "blend", type = CTBlendEffect.class), 
     54        @XmlElement(name = "hsl", type = CTHSLEffect.class), 
     55        @XmlElement(name = "effect", type = CTEffectReference.class), 
     56        @XmlElement(name = "glow", type = CTGlowEffect.class), 
     57        @XmlElement(name = "blur", type = CTBlurEffect.class), 
     58        @XmlElement(name = "lum", type = CTLuminanceEffect.class), 
     59        @XmlElement(name = "outerShdw", type = CTOuterShadowEffect.class), 
     60        @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
     61        @XmlElement(name = "softEdge", type = CTSoftEdgesEffect.class), 
     62        @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
     63        @XmlElement(name = "alphaBiLevel", type = CTAlphaBiLevelEffect.class), 
     64        @XmlElement(name = "alphaInv", type = CTAlphaInverseEffect.class), 
    6365        @XmlElement(name = "cont", type = CTEffectContainer.class), 
    64         @XmlElement(name = "alphaBiLevel", type = CTAlphaBiLevelEffect.class), 
     66        @XmlElement(name = "prstShdw", type = CTPresetShadowEffect.class), 
    6567        @XmlElement(name = "tint", type = CTTintEffect.class), 
    66         @XmlElement(name = "outerShdw", type = CTOuterShadowEffect.class), 
    67         @XmlElement(name = "xfrm", type = CTTransformEffect.class), 
    68         @XmlElement(name = "blend", type = CTBlendEffect.class), 
    69         @XmlElement(name = "softEdge", type = CTSoftEdgesEffect.class), 
     68        @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
     69        @XmlElement(name = "alphaMod", type = CTAlphaModulateEffect.class), 
     70        @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
     71        @XmlElement(name = "fill", type = CTFillEffect.class), 
     72        @XmlElement(name = "clrChange", type = CTColorChangeEffect.class), 
     73        @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
     74        @XmlElement(name = "grayscl", type = CTGrayscaleEffect.class), 
    7075        @XmlElement(name = "reflection", type = CTReflectionEffect.class), 
    71         @XmlElement(name = "fill", type = CTFillEffect.class), 
    72         @XmlElement(name = "prstShdw", type = CTPresetShadowEffect.class), 
    73         @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class), 
    74         @XmlElement(name = "glow", type = CTGlowEffect.class), 
    75         @XmlElement(name = "grayscl", type = CTGrayscaleEffect.class), 
    76         @XmlElement(name = "blur", type = CTBlurEffect.class) 
     76        @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class) 
    7777    }) 
    7878    protected List<Object> egEffect; 
     
    104104     * <p> 
    105105     * Objects of the following type(s) are allowed in the list 
    106      * {@link CTDuotoneEffect } 
    107      * {@link CTEffectReference } 
    108      * {@link CTLuminanceEffect } 
    109      * {@link CTAlphaReplaceEffect } 
    110      * {@link CTRelativeOffsetEffect } 
    111      * {@link CTBiLevelEffect } 
    112      * {@link CTAlphaInverseEffect } 
    113106     * {@link CTAlphaOutsetEffect } 
    114      * {@link CTFillOverlayEffect } 
    115      * {@link CTHSLEffect } 
    116      * {@link CTAlphaFloorEffect } 
    117      * {@link CTColorChangeEffect } 
    118      * {@link CTAlphaModulateEffect } 
     107     * {@link CTTransformEffect } 
    119108     * {@link CTInnerShadowEffect } 
    120109     * {@link CTAlphaModulateFixedEffect } 
     110     * {@link CTRelativeOffsetEffect } 
    121111     * {@link CTAlphaCeilingEffect } 
     112     * {@link CTBlendEffect } 
     113     * {@link CTHSLEffect } 
     114     * {@link CTEffectReference } 
     115     * {@link CTGlowEffect } 
     116     * {@link CTBlurEffect } 
     117     * {@link CTLuminanceEffect } 
     118     * {@link CTOuterShadowEffect } 
     119     * {@link CTFillOverlayEffect } 
     120     * {@link CTSoftEdgesEffect } 
     121     * {@link CTAlphaReplaceEffect } 
     122     * {@link CTAlphaBiLevelEffect } 
     123     * {@link CTAlphaInverseEffect } 
    122124     * {@link CTEffectContainer } 
    123      * {@link CTAlphaBiLevelEffect } 
     125     * {@link CTPresetShadowEffect } 
    124126     * {@link CTTintEffect } 
    125      * {@link CTOuterShadowEffect } 
    126      * {@link CTTransformEffect } 
    127      * {@link CTBlendEffect } 
    128      * {@link CTSoftEdgesEffect } 
     127     * {@link CTBiLevelEffect } 
     128     * {@link CTAlphaModulateEffect } 
     129     * {@link CTAlphaFloorEffect } 
     130     * {@link CTFillEffect } 
     131     * {@link CTColorChangeEffect } 
     132     * {@link CTDuotoneEffect } 
     133     * {@link CTGrayscaleEffect } 
    129134     * {@link CTReflectionEffect } 
    130      * {@link CTFillEffect } 
    131      * {@link CTPresetShadowEffect } 
    132135     * {@link CTColorReplaceEffect } 
    133      * {@link CTGlowEffect } 
    134      * {@link CTGrayscaleEffect } 
    135      * {@link CTBlurEffect } 
    136136     *  
    137137     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTFillStyleList.java

    r517 r568  
    4343    @XmlElements({ 
    4444        @XmlElement(name = "grpFill", type = CTGroupFillProperties.class), 
    45         @XmlElement(name = "noFill", type = CTNoFillProperties.class), 
    4645        @XmlElement(name = "gradFill", type = CTGradientFillProperties.class), 
    4746        @XmlElement(name = "pattFill", type = CTPatternFillProperties.class), 
     47        @XmlElement(name = "blipFill", type = CTBlipFillProperties.class), 
    4848        @XmlElement(name = "solidFill", type = CTSolidColorFillProperties.class), 
    49         @XmlElement(name = "blipFill", type = CTBlipFillProperties.class) 
     49        @XmlElement(name = "noFill", type = CTNoFillProperties.class) 
    5050    }) 
    5151    protected List<Object> egFillProperties; 
     
    7272     * Objects of the following type(s) are allowed in the list 
    7373     * {@link CTGroupFillProperties } 
    74      * {@link CTNoFillProperties } 
    7574     * {@link CTGradientFillProperties } 
    7675     * {@link CTPatternFillProperties } 
     76     * {@link CTBlipFillProperties } 
    7777     * {@link CTSolidColorFillProperties } 
    78      * {@link CTBlipFillProperties } 
     78     * {@link CTNoFillProperties } 
    7979     *  
    8080     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTHslColor.java

    r517 r568  
    4646 
    4747    @XmlElementRefs({ 
     48        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     49        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     50        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     51        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     52        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     53        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     54        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     55        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     56        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     57        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     58        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     59        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     60        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     61        @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     62        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     63        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     64        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    4869        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    4970        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    50         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    51         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5272        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    53         @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    54         @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    55         @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    56         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    57         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    58         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    59         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    60         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    61         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    62         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    63         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6573        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7274        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     75        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    7676    }) 
    7777    protected List<JAXBElement<?>> egColorTransform; 
     
    103103     * <p> 
    104104     * Objects of the following type(s) are allowed in the list 
     105     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     106     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     107     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     108     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     109     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     110     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     111     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     112     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     113     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     114     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     116     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     117     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     118     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    105121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    106122     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    107      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    108128     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    109129     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    110130     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    111      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    112      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    113      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    114      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    115      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    116      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    117      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    130      * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    133133     *  
    134134     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTPath2D.java

    r517 r568  
    5555        @XmlElement(name = "quadBezTo", type = CTPath2DQuadBezierTo.class), 
    5656        @XmlElement(name = "arcTo", type = CTPath2DArcTo.class), 
    57         @XmlElement(name = "cubicBezTo", type = CTPath2DCubicBezierTo.class), 
    5857        @XmlElement(name = "moveTo", type = CTPath2DMoveTo.class), 
    5958        @XmlElement(name = "close", type = CTPath2DClose.class), 
     59        @XmlElement(name = "cubicBezTo", type = CTPath2DCubicBezierTo.class), 
    6060        @XmlElement(name = "lnTo", type = CTPath2DLineTo.class) 
    6161    }) 
     
    9494     * {@link CTPath2DQuadBezierTo } 
    9595     * {@link CTPath2DArcTo } 
    96      * {@link CTPath2DCubicBezierTo } 
    9796     * {@link CTPath2DMoveTo } 
    9897     * {@link CTPath2DClose } 
     98     * {@link CTPath2DCubicBezierTo } 
    9999     * {@link CTPath2DLineTo } 
    100100     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTPresetColor.java

    r517 r568  
    4444 
    4545    @XmlElementRefs({ 
    46         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    47         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    48         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    49         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    50         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    51         @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    52         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    53         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5446        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5547        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     48        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     49        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     50        @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     51        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     52        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     53        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     54        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     55        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     56        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     57        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     58        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     59        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5660        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    57         @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5861        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    59         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    60         @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    61         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    62         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    63         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     62        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6563        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6664        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     65        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    7474    }) 
    7575    protected List<JAXBElement<?>> egColorTransform; 
     
    9797     * <p> 
    9898     * Objects of the following type(s) are allowed in the list 
    99      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    100      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    101      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     99     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     100     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    102101     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     102     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     103     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
     104     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     105     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     106     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
     107     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     108     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    103109     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    104110     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    105      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    106      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    107      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    108      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    109      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    110      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     111     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    111112     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    112113     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     
    115116     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    116117     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     118     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    117121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118122     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    119123     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    120125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    125126     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    127127     *  
    128128     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTSRgbColor.java

    r517 r568  
    4646 
    4747    @XmlElementRefs({ 
    48         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    4948        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    50         @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    51         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    52         @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     49        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     50        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5351        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    54         @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    55         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    56         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    57         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    58         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    59         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    60         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    61         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    62         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    63         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6852        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6953        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     54        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     55        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     56        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     57        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     58        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     59        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     60        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     61        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     62        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     63        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     64        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7072        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     73        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    7676    }) 
    7777    protected List<JAXBElement<?>> egColorTransform; 
     
    100100     * <p> 
    101101     * Objects of the following type(s) are allowed in the list 
    102      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    103      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    104      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    105      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    106102     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    107103     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     
    110106     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    111107     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     108     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     109     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     110     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
     111     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     112     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     113     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     114     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    112116     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    113117     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    114      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    115      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    116      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     118     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    117121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    122122     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    123124     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    124125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    126128     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    127129     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    130130     *  
    131131     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTScRgbColor.java

    r517 r568  
    4646 
    4747    @XmlElementRefs({ 
     48        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     49        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     50        @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     51        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     52        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     53        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     54        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     55        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     56        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     57        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     58        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     59        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     60        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     61        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    4862        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    49         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    50         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    51         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    52         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    53         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    54         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     63        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     64        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5566        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5667        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    57         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5871        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    59         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    60         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6172        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6273        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    63         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     74        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    7676    }) 
    7777    protected List<JAXBElement<?>> egColorTransform; 
     
    103103     * <p> 
    104104     * Objects of the following type(s) are allowed in the list 
    105      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    106      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    107      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    108      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    109      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    110      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    111      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    112      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    113      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    114      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    115      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    116      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    117      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    126105     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    127106     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     107     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
     108     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     109     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     110     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     111     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     112     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     113     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     114     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     116     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     117     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    128118     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    130      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    133133     *  
    134134     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTSchemeColor.java

    r517 r568  
    4444 
    4545    @XmlElementRefs({ 
     46        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     47        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     48        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     49        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     50        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    4651        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    47         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    48         @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    49         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    50         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    51         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5252        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     53        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     54        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5355        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     56        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     57        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     58        @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     59        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     60        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5461        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5562        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     63        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     64        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5667        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    57         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    58         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5970        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6071        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    61         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    62         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    63         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6772        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     73        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    7474    }) 
    7575    protected List<JAXBElement<?>> egColorTransform; 
     
    9797     * <p> 
    9898     * Objects of the following type(s) are allowed in the list 
     99     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    99100     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    100101     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    101102     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    102      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    103      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    104      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    105      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    106      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    107      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    108      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    109      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    110      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    111      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    112      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    113      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    114      * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    115103     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    116      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    117104     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118105     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     
    120107     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    121108     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     109     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     110     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     111     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    122112     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     113     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     114     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     116     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    123117     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     118     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    127127     *  
    128128     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTSystemColor.java

    r517 r568  
    4848 
    4949    @XmlElementRefs({ 
     50        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     51        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     52        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     53        @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     54        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     55        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     56        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     57        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     58        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     59        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     60        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     61        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     62        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     63        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     64        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5065        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5173        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    52         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    53         @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    54         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    55         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    56         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    57         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    5876        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    59         @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    60         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    61         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    62         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    63         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7777        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    7878    }) 
     
    105105     * <p> 
    106106     * Objects of the following type(s) are allowed in the list 
    107      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    108      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     107     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     108     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     109     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     110     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
     111     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     112     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     113     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     114     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    109115     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    110116     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    111117     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    112      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    113118     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    114119     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    115      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    116120     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    117      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118121     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    119125     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    124126     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    125127     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    128128     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    129129     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    130130     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    132132     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    133133     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTTextParagraph.java

    r517 r568  
    4848    @XmlElements({ 
    4949        @XmlElement(name = "br", type = CTTextLineBreak.class), 
    50         @XmlElement(name = "fld", type = CTTextField.class), 
    51         @XmlElement(name = "r", type = CTRegularTextRun.class) 
     50        @XmlElement(name = "r", type = CTRegularTextRun.class), 
     51        @XmlElement(name = "fld", type = CTTextField.class) 
    5252    }) 
    5353    protected List<Object> egTextRun; 
     
    9999     * Objects of the following type(s) are allowed in the list 
    100100     * {@link CTTextLineBreak } 
     101     * {@link CTRegularTextRun } 
    101102     * {@link CTTextField } 
    102      * {@link CTRegularTextRun } 
    103103     *  
    104104     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/ObjectFactory.java

    r500 r568  
    2929    private final static QName _ThemeOverride_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "themeOverride"); 
    3030    private final static QName _Graphic_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "graphic"); 
     31    private final static QName _Anchor_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", "anchor"); 
    3132    private final static QName _Pic_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/picture", "pic"); 
    32     private final static QName _Anchor_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", "anchor"); 
    3333    private final static QName _Blip_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blip"); 
    34     private final static QName _CTPresetColorAlpha_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alpha"); 
    35     private final static QName _CTPresetColorLum_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lum"); 
    36     private final static QName _CTPresetColorGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gamma"); 
    37     private final static QName _CTPresetColorInvGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "invGamma"); 
    38     private final static QName _CTPresetColorAlphaMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alphaMod"); 
    39     private final static QName _CTPresetColorRedOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "redOff"); 
    40     private final static QName _CTPresetColorAlphaOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alphaOff"); 
    41     private final static QName _CTPresetColorGreenOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "greenOff"); 
    42     private final static QName _CTPresetColorHue_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hue"); 
    43     private final static QName _CTPresetColorRedMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "redMod"); 
    44     private final static QName _CTPresetColorSatOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "satOff"); 
    45     private final static QName _CTPresetColorGreenMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "greenMod"); 
    46     private final static QName _CTPresetColorBlue_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blue"); 
    47     private final static QName _CTPresetColorSat_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "sat"); 
    48     private final static QName _CTPresetColorRed_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "red"); 
    49     private final static QName _CTPresetColorSatMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "satMod"); 
    50     private final static QName _CTPresetColorBlueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueMod"); 
    51     private final static QName _CTPresetColorHueOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hueOff"); 
    52     private final static QName _CTPresetColorShade_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "shade"); 
    53     private final static QName _CTPresetColorLumMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lumMod"); 
    54     private final static QName _CTPresetColorInv_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "inv"); 
    55     private final static QName _CTPresetColorLumOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lumOff"); 
    56     private final static QName _CTPresetColorTint_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "tint"); 
    57     private final static QName _CTPresetColorGreen_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "green"); 
    58     private final static QName _CTPresetColorComp_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "comp"); 
    59     private final static QName _CTPresetColorBlueOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueOff"); 
    60     private final static QName _CTPresetColorHueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hueMod"); 
    61     private final static QName _CTPresetColorGray_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gray"); 
     34    private final static QName _CTSystemColorAlpha_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alpha"); 
     35    private final static QName _CTSystemColorLum_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lum"); 
     36    private final static QName _CTSystemColorGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gamma"); 
     37    private final static QName _CTSystemColorInvGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "invGamma"); 
     38    private final static QName _CTSystemColorAlphaMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alphaMod"); 
     39    private final static QName _CTSystemColorRedOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "redOff"); 
     40    private final static QName _CTSystemColorAlphaOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alphaOff"); 
     41    private final static QName _CTSystemColorGreenOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "greenOff"); 
     42    private final static QName _CTSystemColorRedMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "redMod"); 
     43    private final static QName _CTSystemColorHue_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hue"); 
     44    private final static QName _CTSystemColorSatOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "satOff"); 
     45    private final static QName _CTSystemColorGreenMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "greenMod"); 
     46    private final static QName _CTSystemColorSat_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "sat"); 
     47    private final static QName _CTSystemColorBlue_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blue"); 
     48    private final static QName _CTSystemColorRed_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "red"); 
     49    private final static QName _CTSystemColorSatMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "satMod"); 
     50    private final static QName _CTSystemColorHueOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hueOff"); 
     51    private final static QName _CTSystemColorBlueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueMod"); 
     52    private final static QName _CTSystemColorShade_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "shade"); 
     53    private final static QName _CTSystemColorLumMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lumMod"); 
     54    private final static QName _CTSystemColorInv_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "inv"); 
     55    private final static QName _CTSystemColorLumOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lumOff"); 
     56    private final static QName _CTSystemColorTint_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "tint"); 
     57    private final static QName _CTSystemColorGreen_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "green"); 
     58    private final static QName _CTSystemColorComp_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "comp"); 
     59    private final static QName _CTSystemColorBlueOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueOff"); 
     60    private final static QName _CTSystemColorHueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hueMod"); 
     61    private final static QName _CTSystemColorGray_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gray"); 
    6262 
    6363    /** 
     
    6666     */ 
    6767    public ObjectFactory() { 
     68    } 
     69 
     70    /** 
     71     * Create an instance of {@link CTTextNoAutofit } 
     72     *  
     73     */ 
     74    public CTTextNoAutofit createCTTextNoAutofit() { 
     75        return new CTTextNoAutofit(); 
     76    } 
     77 
     78    /** 
     79     * Create an instance of {@link CTLineStyleList } 
     80     *  
     81     */ 
     82    public CTLineStyleList createCTLineStyleList() { 
     83        return new CTLineStyleList(); 
     84    } 
     85 
     86    /** 
     87     * Create an instance of {@link CTColorScheme } 
     88     *  
     89     */ 
     90    public CTColorScheme createCTColorScheme() { 
     91        return new CTColorScheme(); 
     92    } 
     93 
     94    /** 
     95     * Create an instance of {@link CTHSLEffect } 
     96     *  
     97     */ 
     98    public CTHSLEffect createCTHSLEffect() { 
     99        return new CTHSLEffect(); 
     100    } 
     101 
     102    /** 
     103     * Create an instance of {@link CTShapeLocking } 
     104     *  
     105     */ 
     106    public CTShapeLocking createCTShapeLocking() { 
     107        return new CTShapeLocking(); 
     108    } 
     109 
     110    /** 
     111     * Create an instance of {@link CTPosV } 
     112     *  
     113     */ 
     114    public CTPosV createCTPosV() { 
     115        return new CTPosV(); 
     116    } 
     117 
     118    /** 
     119     * Create an instance of {@link CTCustomGeometry2D } 
     120     *  
     121     */ 
     122    public CTCustomGeometry2D createCTCustomGeometry2D() { 
     123        return new CTCustomGeometry2D(); 
     124    } 
     125 
     126    /** 
     127     * Create an instance of {@link CTNonVisualGroupDrawingShapeProps } 
     128     *  
     129     */ 
     130    public CTNonVisualGroupDrawingShapeProps createCTNonVisualGroupDrawingShapeProps() { 
     131        return new CTNonVisualGroupDrawingShapeProps(); 
     132    } 
     133 
     134    /** 
     135     * Create an instance of {@link CTLuminanceEffect } 
     136     *  
     137     */ 
     138    public CTLuminanceEffect createCTLuminanceEffect() { 
     139        return new CTLuminanceEffect(); 
     140    } 
     141 
     142    /** 
     143     * Create an instance of {@link CTShapeProperties } 
     144     *  
     145     */ 
     146    public CTShapeProperties createCTShapeProperties() { 
     147        return new CTShapeProperties(); 
     148    } 
     149 
     150    /** 
     151     * Create an instance of {@link CTRatio } 
     152     *  
     153     */ 
     154    public CTRatio createCTRatio() { 
     155        return new CTRatio(); 
     156    } 
     157 
     158    /** 
     159     * Create an instance of {@link CTSchemeColor } 
     160     *  
     161     */ 
     162    public CTSchemeColor createCTSchemeColor() { 
     163        return new CTSchemeColor(); 
     164    } 
     165 
     166    /** 
     167     * Create an instance of {@link CTGradientStopList } 
     168     *  
     169     */ 
     170    public CTGradientStopList createCTGradientStopList() { 
     171        return new CTGradientStopList(); 
     172    } 
     173 
     174    /** 
     175     * Create an instance of {@link TextFont } 
     176     *  
     177     */ 
     178    public TextFont createTextFont() { 
     179        return new TextFont(); 
     180    } 
     181 
     182    /** 
     183     * Create an instance of {@link CTEmptyElement } 
     184     *  
     185     */ 
     186    public CTEmptyElement createCTEmptyElement() { 
     187        return new CTEmptyElement(); 
     188    } 
     189 
     190    /** 
     191     * Create an instance of {@link CTStyleMatrixReference } 
     192     *  
     193     */ 
     194    public CTStyleMatrixReference createCTStyleMatrixReference() { 
     195        return new CTStyleMatrixReference(); 
     196    } 
     197 
     198    /** 
     199     * Create an instance of {@link CTTextUnderlineFillFollowText } 
     200     *  
     201     */ 
     202    public CTTextUnderlineFillFollowText createCTTextUnderlineFillFollowText() { 
     203        return new CTTextUnderlineFillFollowText(); 
     204    } 
     205 
     206    /** 
     207     * Create an instance of {@link CTTextTabStopList } 
     208     *  
     209     */ 
     210    public CTTextTabStopList createCTTextTabStopList() { 
     211        return new CTTextTabStopList(); 
     212    } 
     213 
     214    /** 
     215     * Create an instance of {@link CTTextBodyProperties } 
     216     *  
     217     */ 
     218    public CTTextBodyProperties createCTTextBodyProperties() { 
     219        return new CTTextBodyProperties(); 
     220    } 
     221 
     222    /** 
     223     * Create an instance of {@link CTLineJoinBevel } 
     224     *  
     225     */ 
     226    public CTLineJoinBevel createCTLineJoinBevel() { 
     227        return new CTLineJoinBevel(); 
     228    } 
     229 
     230    /** 
     231     * Create an instance of {@link CTNonVisualConnectorProperties } 
     232     *  
     233     */ 
     234    public CTNonVisualConnectorProperties createCTNonVisualConnectorProperties() { 
     235        return new CTNonVisualConnectorProperties(); 
     236    } 
     237 
     238    /** 
     239     * Create an instance of {@link CTShapeStyle } 
     240     *  
     241     */ 
     242    public CTShapeStyle createCTShapeStyle() { 
     243        return new CTShapeStyle(); 
     244    } 
     245 
     246    /** 
     247     * Create an instance of {@link CTFillEffect } 
     248     *  
     249     */ 
     250    public CTFillEffect createCTFillEffect() { 
     251        return new CTFillEffect(); 
     252    } 
     253 
     254    /** 
     255     * Create an instance of {@link CTPath2DArcTo } 
     256     *  
     257     */ 
     258    public CTPath2DArcTo createCTPath2DArcTo() { 
     259        return new CTPath2DArcTo(); 
     260    } 
     261 
     262    /** 
     263     * Create an instance of {@link CTFillOverlayEffect } 
     264     *  
     265     */ 
     266    public CTFillOverlayEffect createCTFillOverlayEffect() { 
     267        return new CTFillOverlayEffect(); 
     268    } 
     269 
     270    /** 
     271     * Create an instance of {@link CTLineJoinRound } 
     272     *  
     273     */ 
     274    public CTLineJoinRound createCTLineJoinRound() { 
     275        return new CTLineJoinRound(); 
     276    } 
     277 
     278    /** 
     279     * Create an instance of {@link CTPresetShadowEffect } 
     280     *  
     281     */ 
     282    public CTPresetShadowEffect createCTPresetShadowEffect() { 
     283        return new CTPresetShadowEffect(); 
     284    } 
     285 
     286    /** 
     287     * Create an instance of {@link CTColor } 
     288     *  
     289     */ 
     290    public CTColor createCTColor() { 
     291        return new CTColor(); 
     292    } 
     293 
     294    /** 
     295     * Create an instance of {@link CTAlphaModulateFixedEffect } 
     296     *  
     297     */ 
     298    public CTAlphaModulateFixedEffect createCTAlphaModulateFixedEffect() { 
     299        return new CTAlphaModulateFixedEffect(); 
     300    } 
     301 
     302    /** 
     303     * Create an instance of {@link CTBlurEffect } 
     304     *  
     305     */ 
     306    public CTBlurEffect createCTBlurEffect() { 
     307        return new CTBlurEffect(); 
     308    } 
     309 
     310    /** 
     311     * Create an instance of {@link CTOuterShadowEffect } 
     312     *  
     313     */ 
     314    public CTOuterShadowEffect createCTOuterShadowEffect() { 
     315        return new CTOuterShadowEffect(); 
     316    } 
     317 
     318    /** 
     319     * Create an instance of {@link CTBackgroundFillStyleList } 
     320     *  
     321     */ 
     322    public CTBackgroundFillStyleList createCTBackgroundFillStyleList() { 
     323        return new CTBackgroundFillStyleList(); 
     324    } 
     325 
     326    /** 
     327     * Create an instance of {@link CTBevel } 
     328     *  
     329     */ 
     330    public CTBevel createCTBevel() { 
     331        return new CTBevel(); 
     332    } 
     333 
     334    /** 
     335     * Create an instance of {@link CTGroupShapeProperties } 
     336     *  
     337     */ 
     338    public CTGroupShapeProperties createCTGroupShapeProperties() { 
     339        return new CTGroupShapeProperties(); 
     340    } 
     341 
     342    /** 
     343     * Create an instance of {@link CTTextBulletTypefaceFollowText } 
     344     *  
     345     */ 
     346    public CTTextBulletTypefaceFollowText createCTTextBulletTypefaceFollowText() { 
     347        return new CTTextBulletTypefaceFollowText(); 
     348    } 
     349 
     350    /** 
     351     * Create an instance of {@link CTBaseStylesOverride } 
     352     *  
     353     */ 
     354    public CTBaseStylesOverride createCTBaseStylesOverride() { 
     355        return new CTBaseStylesOverride(); 
     356    } 
     357 
     358    /** 
     359     * Create an instance of {@link CTDashStopList } 
     360     *  
     361     */ 
     362    public CTDashStopList createCTDashStopList() { 
     363        return new CTDashStopList(); 
     364    } 
     365 
     366    /** 
     367     * Create an instance of {@link CTGrayscaleTransform } 
     368     *  
     369     */ 
     370    public CTGrayscaleTransform createCTGrayscaleTransform() { 
     371        return new CTGrayscaleTransform(); 
     372    } 
     373 
     374    /** 
     375     * Create an instance of {@link CTPresetGeometry2D } 
     376     *  
     377     */ 
     378    public CTPresetGeometry2D createCTPresetGeometry2D() { 
     379        return new CTPresetGeometry2D(); 
     380    } 
     381 
     382    /** 
     383     * Create an instance of {@link CTPath2DLineTo } 
     384     *  
     385     */ 
     386    public CTPath2DLineTo createCTPath2DLineTo() { 
     387        return new CTPath2DLineTo(); 
     388    } 
     389 
     390    /** 
     391     * Create an instance of {@link CTColorSchemeAndMapping } 
     392     *  
     393     */ 
     394    public CTColorSchemeAndMapping createCTColorSchemeAndMapping() { 
     395        return new CTColorSchemeAndMapping(); 
     396    } 
     397 
     398    /** 
     399     * Create an instance of {@link CTPatternFillProperties } 
     400     *  
     401     */ 
     402    public CTPatternFillProperties createCTPatternFillProperties() { 
     403        return new CTPatternFillProperties(); 
     404    } 
     405 
     406    /** 
     407     * Create an instance of {@link CTPath2DQuadBezierTo } 
     408     *  
     409     */ 
     410    public CTPath2DQuadBezierTo createCTPath2DQuadBezierTo() { 
     411        return new CTPath2DQuadBezierTo(); 
     412    } 
     413 
     414    /** 
     415     * Create an instance of {@link CTStretchInfoProperties } 
     416     *  
     417     */ 
     418    public CTStretchInfoProperties createCTStretchInfoProperties() { 
     419        return new CTStretchInfoProperties(); 
     420    } 
     421 
     422    /** 
     423     * Create an instance of {@link CTPositiveSize2D } 
     424     *  
     425     */ 
     426    public CTPositiveSize2D createCTPositiveSize2D() { 
     427        return new CTPositiveSize2D(); 
     428    } 
     429 
     430    /** 
     431     * Create an instance of {@link CTDefaultShapeDefinition } 
     432     *  
     433     */ 
     434    public CTDefaultShapeDefinition createCTDefaultShapeDefinition() { 
     435        return new CTDefaultShapeDefinition(); 
     436    } 
     437 
     438    /** 
     439     * Create an instance of {@link CTDashStop } 
     440     *  
     441     */ 
     442    public CTDashStop createCTDashStop() { 
     443        return new CTDashStop(); 
     444    } 
     445 
     446    /** 
     447     * Create an instance of {@link FontCollection.Font } 
     448     *  
     449     */ 
     450    public FontCollection.Font createFontCollectionFont() { 
     451        return new FontCollection.Font(); 
     452    } 
     453 
     454    /** 
     455     * Create an instance of {@link CTAdjPoint2D } 
     456     *  
     457     */ 
     458    public CTAdjPoint2D createCTAdjPoint2D() { 
     459        return new CTAdjPoint2D(); 
     460    } 
     461 
     462    /** 
     463     * Create an instance of {@link CTTextNoBullet } 
     464     *  
     465     */ 
     466    public CTTextNoBullet createCTTextNoBullet() { 
     467        return new CTTextNoBullet(); 
     468    } 
     469 
     470    /** 
     471     * Create an instance of {@link CTPathShadeProperties } 
     472     *  
     473     */ 
     474    public CTPathShadeProperties createCTPathShadeProperties() { 
     475        return new CTPathShadeProperties(); 
     476    } 
     477 
     478    /** 
     479     * Create an instance of {@link CTSoftEdgesEffect } 
     480     *  
     481     */ 
     482    public CTSoftEdgesEffect createCTSoftEdgesEffect() { 
     483        return new CTSoftEdgesEffect(); 
     484    } 
     485 
     486    /** 
     487     * Create an instance of {@link CTPresetTextShape } 
     488     *  
     489     */ 
     490    public CTPresetTextShape createCTPresetTextShape() { 
     491        return new CTPresetTextShape(); 
     492    } 
     493 
     494    /** 
     495     * Create an instance of {@link CTWrapSquare } 
     496     *  
     497     */ 
     498    public CTWrapSquare createCTWrapSquare() { 
     499        return new CTWrapSquare(); 
     500    } 
     501 
     502    /** 
     503     * Create an instance of {@link CTTileInfoProperties } 
     504     *  
     505     */ 
     506    public CTTileInfoProperties createCTTileInfoProperties() { 
     507        return new CTTileInfoProperties(); 
     508    } 
     509 
     510    /** 
     511     * Create an instance of {@link CTEffectExtent } 
     512     *  
     513     */ 
     514    public CTEffectExtent createCTEffectExtent() { 
     515        return new CTEffectExtent(); 
     516    } 
     517 
     518    /** 
     519     * Create an instance of {@link CTOfficeArtExtensionList } 
     520     *  
     521     */ 
     522    public CTOfficeArtExtensionList createCTOfficeArtExtensionList() { 
     523        return new CTOfficeArtExtensionList(); 
     524    } 
     525 
     526    /** 
     527     * Create an instance of {@link CTGraphicalObjectFrameLocking } 
     528     *  
     529     */ 
     530    public CTGraphicalObjectFrameLocking createCTGraphicalObjectFrameLocking() { 
     531        return new CTGraphicalObjectFrameLocking(); 
     532    } 
     533 
     534    /** 
     535     * Create an instance of {@link CTGeomGuide } 
     536     *  
     537     */ 
     538    public CTGeomGuide createCTGeomGuide() { 
     539        return new CTGeomGuide(); 
     540    } 
     541 
     542    /** 
     543     * Create an instance of {@link CTEffectProperties } 
     544     *  
     545     */ 
     546    public CTEffectProperties createCTEffectProperties() { 
     547        return new CTEffectProperties(); 
     548    } 
     549 
     550    /** 
     551     * Create an instance of {@link FontCollection } 
     552     *  
     553     */ 
     554    public FontCollection createFontCollection() { 
     555        return new FontCollection(); 
     556    } 
     557 
     558    /** 
     559     * Create an instance of {@link CTPositiveFixedAngle } 
     560     *  
     561     */ 
     562    public CTPositiveFixedAngle createCTPositiveFixedAngle() { 
     563        return new CTPositiveFixedAngle(); 
     564    } 
     565 
     566    /** 
     567     * Create an instance of {@link CTGeomGuideList } 
     568     *  
     569     */ 
     570    public CTGeomGuideList createCTGeomGuideList() { 
     571        return new CTGeomGuideList(); 
     572    } 
     573 
     574    /** 
     575     * Create an instance of {@link CTVector3D } 
     576     *  
     577     */ 
     578    public CTVector3D createCTVector3D() { 
     579        return new CTVector3D(); 
     580    } 
     581 
     582    /** 
     583     * Create an instance of {@link CTColorSchemeList } 
     584     *  
     585     */ 
     586    public CTColorSchemeList createCTColorSchemeList() { 
     587        return new CTColorSchemeList(); 
     588    } 
     589 
     590    /** 
     591     * Create an instance of {@link CTPresetLineDashProperties } 
     592     *  
     593     */ 
     594    public CTPresetLineDashProperties createCTPresetLineDashProperties() { 
     595        return new CTPresetLineDashProperties(); 
     596    } 
     597 
     598    /** 
     599     * Create an instance of {@link CTTextParagraphProperties } 
     600     *  
     601     */ 
     602    public CTTextParagraphProperties createCTTextParagraphProperties() { 
     603        return new CTTextParagraphProperties(); 
     604    } 
     605 
     606    /** 
     607     * Create an instance of {@link CTTextField } 
     608     *  
     609     */ 
     610    public CTTextField createCTTextField() { 
     611        return new CTTextField(); 
     612    } 
     613 
     614    /** 
     615     * Create an instance of {@link BaseStyles } 
     616     *  
     617     */ 
     618    public BaseStyles createBaseStyles() { 
     619        return new BaseStyles(); 
     620    } 
     621 
     622    /** 
     623     * Create an instance of {@link CTSystemColor } 
     624     *  
     625     */ 
     626    public CTSystemColor createCTSystemColor() { 
     627        return new CTSystemColor(); 
     628    } 
     629 
     630    /** 
     631     * Create an instance of {@link CTTextBody } 
     632     *  
     633     */ 
     634    public CTTextBody createCTTextBody() { 
     635        return new CTTextBody(); 
     636    } 
     637 
     638    /** 
     639     * Create an instance of {@link CTInverseTransform } 
     640     *  
     641     */ 
     642    public CTInverseTransform createCTInverseTransform() { 
     643        return new CTInverseTransform(); 
     644    } 
     645 
     646    /** 
     647     * Create an instance of {@link CTTextListStyle } 
     648     *  
     649     */ 
     650    public CTTextListStyle createCTTextListStyle() { 
     651        return new CTTextListStyle(); 
     652    } 
     653 
     654    /** 
     655     * Create an instance of {@link CTFillStyleList } 
     656     *  
     657     */ 
     658    public CTFillStyleList createCTFillStyleList() { 
     659        return new CTFillStyleList(); 
     660    } 
     661 
     662    /** 
     663     * Create an instance of {@link CTBlipFillProperties } 
     664     *  
     665     */ 
     666    public CTBlipFillProperties createCTBlipFillProperties() { 
     667        return new CTBlipFillProperties(); 
     668    } 
     669 
     670    /** 
     671     * Create an instance of {@link CTTextAutonumberBullet } 
     672     *  
     673     */ 
     674    public CTTextAutonumberBullet createCTTextAutonumberBullet() { 
     675        return new CTTextAutonumberBullet(); 
    68676    } 
    69677 
     
    77685 
    78686    /** 
     687     * Create an instance of {@link CTEmbeddedWAVAudioFile } 
     688     *  
     689     */ 
     690    public CTEmbeddedWAVAudioFile createCTEmbeddedWAVAudioFile() { 
     691        return new CTEmbeddedWAVAudioFile(); 
     692    } 
     693 
     694    /** 
     695     * Create an instance of {@link CTPosH } 
     696     *  
     697     */ 
     698    public CTPosH createCTPosH() { 
     699        return new CTPosH(); 
     700    } 
     701 
     702    /** 
     703     * Create an instance of {@link CTGroupFillProperties } 
     704     *  
     705     */ 
     706    public CTGroupFillProperties createCTGroupFillProperties() { 
     707        return new CTGroupFillProperties(); 
     708    } 
     709 
     710    /** 
     711     * Create an instance of {@link CTBlip } 
     712     *  
     713     */ 
     714    public CTBlip createCTBlip() { 
     715        return new CTBlip(); 
     716    } 
     717 
     718    /** 
     719     * Create an instance of {@link CTNoFillProperties } 
     720     *  
     721     */ 
     722    public CTNoFillProperties createCTNoFillProperties() { 
     723        return new CTNoFillProperties(); 
     724    } 
     725 
     726    /** 
     727     * Create an instance of {@link CTLineJoinMiterProperties } 
     728     *  
     729     */ 
     730    public CTLineJoinMiterProperties createCTLineJoinMiterProperties() { 
     731        return new CTLineJoinMiterProperties(); 
     732    } 
     733 
     734    /** 
     735     * Create an instance of {@link CTPercentage } 
     736     *  
     737     */ 
     738    public CTPercentage createCTPercentage() { 
     739        return new CTPercentage(); 
     740    } 
     741 
     742    /** 
     743     * Create an instance of {@link CTInverseGammaTransform } 
     744     *  
     745     */ 
     746    public CTInverseGammaTransform createCTInverseGammaTransform() { 
     747        return new CTInverseGammaTransform(); 
     748    } 
     749 
     750    /** 
     751     * Create an instance of {@link CTTransformEffect } 
     752     *  
     753     */ 
     754    public CTTransformEffect createCTTransformEffect() { 
     755        return new CTTransformEffect(); 
     756    } 
     757 
     758    /** 
     759     * Create an instance of {@link CTGradientFillProperties } 
     760     *  
     761     */ 
     762    public CTGradientFillProperties createCTGradientFillProperties() { 
     763        return new CTGradientFillProperties(); 
     764    } 
     765 
     766    /** 
    79767     * Create an instance of {@link CTCamera } 
    80768     *  
     
    85773 
    86774    /** 
    87      * Create an instance of {@link CTAdjPoint2D } 
    88      *  
    89      */ 
    90     public CTAdjPoint2D createCTAdjPoint2D() { 
    91         return new CTAdjPoint2D(); 
     775     * Create an instance of {@link CTColorMapping } 
     776     *  
     777     */ 
     778    public CTColorMapping createCTColorMapping() { 
     779        return new CTColorMapping(); 
     780    } 
     781 
     782    /** 
     783     * Create an instance of {@link CTTextSpacing } 
     784     *  
     785     */ 
     786    public CTTextSpacing createCTTextSpacing() { 
     787        return new CTTextSpacing(); 
     788    } 
     789 
     790    /** 
     791     * Create an instance of {@link CTFontReference } 
     792     *  
     793     */ 
     794    public CTFontReference createCTFontReference() { 
     795        return new CTFontReference(); 
     796    } 
     797 
     798    /** 
     799     * Create an instance of {@link CTEffectStyleList } 
     800     *  
     801     */ 
     802    public CTEffectStyleList createCTEffectStyleList() { 
     803        return new CTEffectStyleList(); 
     804    } 
     805 
     806    /** 
     807     * Create an instance of {@link CTConnectionSite } 
     808     *  
     809     */ 
     810    public CTConnectionSite createCTConnectionSite() { 
     811        return new CTConnectionSite(); 
     812    } 
     813 
     814    /** 
     815     * Create an instance of {@link CTWrapTight } 
     816     *  
     817     */ 
     818    public CTWrapTight createCTWrapTight() { 
     819        return new CTWrapTight(); 
     820    } 
     821 
     822    /** 
     823     * Create an instance of {@link CTPresetColor } 
     824     *  
     825     */ 
     826    public CTPresetColor createCTPresetColor() { 
     827        return new CTPresetColor(); 
     828    } 
     829 
     830    /** 
     831     * Create an instance of {@link CTNonVisualDrawingShapeProps } 
     832     *  
     833     */ 
     834    public CTNonVisualDrawingShapeProps createCTNonVisualDrawingShapeProps() { 
     835        return new CTNonVisualDrawingShapeProps(); 
     836    } 
     837 
     838    /** 
     839     * Create an instance of {@link CTCustomColorList } 
     840     *  
     841     */ 
     842    public CTCustomColorList createCTCustomColorList() { 
     843        return new CTCustomColorList(); 
     844    } 
     845 
     846    /** 
     847     * Create an instance of {@link CTTextSpacingPoint } 
     848     *  
     849     */ 
     850    public CTTextSpacingPoint createCTTextSpacingPoint() { 
     851        return new CTTextSpacingPoint(); 
     852    } 
     853 
     854    /** 
     855     * Create an instance of {@link CTTextUnderlineFillGroupWrapper } 
     856     *  
     857     */ 
     858    public CTTextUnderlineFillGroupWrapper createCTTextUnderlineFillGroupWrapper() { 
     859        return new CTTextUnderlineFillGroupWrapper(); 
     860    } 
     861 
     862    /** 
     863     * Create an instance of {@link CTShape3D } 
     864     *  
     865     */ 
     866    public CTShape3D createCTShape3D() { 
     867        return new CTShape3D(); 
     868    } 
     869 
     870    /** 
     871     * Create an instance of {@link CTHyperlink } 
     872     *  
     873     */ 
     874    public CTHyperlink createCTHyperlink() { 
     875        return new CTHyperlink(); 
     876    } 
     877 
     878    /** 
     879     * Create an instance of {@link CTNonVisualPictureProperties } 
     880     *  
     881     */ 
     882    public CTNonVisualPictureProperties createCTNonVisualPictureProperties() { 
     883        return new CTNonVisualPictureProperties(); 
     884    } 
     885 
     886    /** 
     887     * Create an instance of {@link CTTextShapeAutofit } 
     888     *  
     889     */ 
     890    public CTTextShapeAutofit createCTTextShapeAutofit() { 
     891        return new CTTextShapeAutofit(); 
     892    } 
     893 
     894    /** 
     895     * Create an instance of {@link CTClipboardStyleSheet } 
     896     *  
     897     */ 
     898    public CTClipboardStyleSheet createCTClipboardStyleSheet() { 
     899        return new CTClipboardStyleSheet(); 
     900    } 
     901 
     902    /** 
     903     * Create an instance of {@link CTBlendEffect } 
     904     *  
     905     */ 
     906    public CTBlendEffect createCTBlendEffect() { 
     907        return new CTBlendEffect(); 
     908    } 
     909 
     910    /** 
     911     * Create an instance of {@link CTColorReplaceEffect } 
     912     *  
     913     */ 
     914    public CTColorReplaceEffect createCTColorReplaceEffect() { 
     915        return new CTColorReplaceEffect(); 
     916    } 
     917 
     918    /** 
     919     * Create an instance of {@link CTEffectList } 
     920     *  
     921     */ 
     922    public CTEffectList createCTEffectList() { 
     923        return new CTEffectList(); 
     924    } 
     925 
     926    /** 
     927     * Create an instance of {@link CTAlphaFloorEffect } 
     928     *  
     929     */ 
     930    public CTAlphaFloorEffect createCTAlphaFloorEffect() { 
     931        return new CTAlphaFloorEffect(); 
     932    } 
     933 
     934    /** 
     935     * Create an instance of {@link CTSolidColorFillProperties } 
     936     *  
     937     */ 
     938    public CTSolidColorFillProperties createCTSolidColorFillProperties() { 
     939        return new CTSolidColorFillProperties(); 
     940    } 
     941 
     942    /** 
     943     * Create an instance of {@link CTTextBulletSizeFollowText } 
     944     *  
     945     */ 
     946    public CTTextBulletSizeFollowText createCTTextBulletSizeFollowText() { 
     947        return new CTTextBulletSizeFollowText(); 
     948    } 
     949 
     950    /** 
     951     * Create an instance of {@link CTTextBulletSizePoint } 
     952     *  
     953     */ 
     954    public CTTextBulletSizePoint createCTTextBulletSizePoint() { 
     955        return new CTTextBulletSizePoint(); 
     956    } 
     957 
     958    /** 
     959     * Create an instance of {@link CTTextLineBreak } 
     960     *  
     961     */ 
     962    public CTTextLineBreak createCTTextLineBreak() { 
     963        return new CTTextLineBreak(); 
     964    } 
     965 
     966    /** 
     967     * Create an instance of {@link CTEffectContainer } 
     968     *  
     969     */ 
     970    public CTEffectContainer createCTEffectContainer() { 
     971        return new CTEffectContainer(); 
     972    } 
     973 
     974    /** 
     975     * Create an instance of {@link CTPoint3D } 
     976     *  
     977     */ 
     978    public CTPoint3D createCTPoint3D() { 
     979        return new CTPoint3D(); 
     980    } 
     981 
     982    /** 
     983     * Create an instance of {@link CTCustomColor } 
     984     *  
     985     */ 
     986    public CTCustomColor createCTCustomColor() { 
     987        return new CTCustomColor(); 
     988    } 
     989 
     990    /** 
     991     * Create an instance of {@link CTSphereCoords } 
     992     *  
     993     */ 
     994    public CTSphereCoords createCTSphereCoords() { 
     995        return new CTSphereCoords(); 
     996    } 
     997 
     998    /** 
     999     * Create an instance of {@link Theme } 
     1000     *  
     1001     */ 
     1002    public Theme createTheme() { 
     1003        return new Theme(); 
     1004    } 
     1005 
     1006    /** 
     1007     * Create an instance of {@link CTLinearShadeProperties } 
     1008     *  
     1009     */ 
     1010    public CTLinearShadeProperties createCTLinearShadeProperties() { 
     1011        return new CTLinearShadeProperties(); 
     1012    } 
     1013 
     1014    /** 
     1015     * Create an instance of {@link CTGammaTransform } 
     1016     *  
     1017     */ 
     1018    public CTGammaTransform createCTGammaTransform() { 
     1019        return new CTGammaTransform(); 
     1020    } 
     1021 
     1022    /** 
     1023     * Create an instance of {@link CTPoint2D } 
     1024     *  
     1025     */ 
     1026    public CTPoint2D createCTPoint2D() { 
     1027        return new CTPoint2D(); 
     1028    } 
     1029 
     1030    /** 
     1031     * Create an instance of {@link CTConnectorLocking } 
     1032     *  
     1033     */ 
     1034    public CTConnectorLocking createCTConnectorLocking() { 
     1035        return new CTConnectorLocking(); 
     1036    } 
     1037 
     1038    /** 
     1039     * Create an instance of {@link CTPath2DList } 
     1040     *  
     1041     */ 
     1042    public CTPath2DList createCTPath2DList() { 
     1043        return new CTPath2DList(); 
     1044    } 
     1045 
     1046    /** 
     1047     * Create an instance of {@link CTWrapTopBottom } 
     1048     *  
     1049     */ 
     1050    public CTWrapTopBottom createCTWrapTopBottom() { 
     1051        return new CTWrapTopBottom(); 
     1052    } 
     1053 
     1054    /** 
     1055     * Create an instance of {@link CTGeomRect } 
     1056     *  
     1057     */ 
     1058    public CTGeomRect createCTGeomRect() { 
     1059        return new CTGeomRect(); 
     1060    } 
     1061 
     1062    /** 
     1063     * Create an instance of {@link CTEffectStyleItem } 
     1064     *  
     1065     */ 
     1066    public CTEffectStyleItem createCTEffectStyleItem() { 
     1067        return new CTEffectStyleItem(); 
     1068    } 
     1069 
     1070    /** 
     1071     * Create an instance of {@link CTOfficeArtExtension } 
     1072     *  
     1073     */ 
     1074    public CTOfficeArtExtension createCTOfficeArtExtension() { 
     1075        return new CTOfficeArtExtension(); 
     1076    } 
     1077 
     1078    /** 
     1079     * Create an instance of {@link CTLineEndProperties } 
     1080     *  
     1081     */ 
     1082    public CTLineEndProperties createCTLineEndProperties() { 
     1083        return new CTLineEndProperties(); 
     1084    } 
     1085 
     1086    /** 
     1087     * Create an instance of {@link CTPath2DMoveTo } 
     1088     *  
     1089     */ 
     1090    public CTPath2DMoveTo createCTPath2DMoveTo() { 
     1091        return new CTPath2DMoveTo(); 
     1092    } 
     1093 
     1094    /** 
     1095     * Create an instance of {@link CTRelativeRect } 
     1096     *  
     1097     */ 
     1098    public CTRelativeRect createCTRelativeRect() { 
     1099        return new CTRelativeRect(); 
     1100    } 
     1101 
     1102    /** 
     1103     * Create an instance of {@link CTRelativeOffsetEffect } 
     1104     *  
     1105     */ 
     1106    public CTRelativeOffsetEffect createCTRelativeOffsetEffect() { 
     1107        return new CTRelativeOffsetEffect(); 
     1108    } 
     1109 
     1110    /** 
     1111     * Create an instance of {@link Inline } 
     1112     *  
     1113     */ 
     1114    public Inline createInline() { 
     1115        return new Inline(); 
     1116    } 
     1117 
     1118    /** 
     1119     * Create an instance of {@link CTScale2D } 
     1120     *  
     1121     */ 
     1122    public CTScale2D createCTScale2D() { 
     1123        return new CTScale2D(); 
     1124    } 
     1125 
     1126    /** 
     1127     * Create an instance of {@link CTPath2DClose } 
     1128     *  
     1129     */ 
     1130    public CTPath2DClose createCTPath2DClose() { 
     1131        return new CTPath2DClose(); 
     1132    } 
     1133 
     1134    /** 
     1135     * Create an instance of {@link CTTextSpacingPercent } 
     1136     *  
     1137     */ 
     1138    public CTTextSpacingPercent createCTTextSpacingPercent() { 
     1139        return new CTTextSpacingPercent(); 
     1140    } 
     1141 
     1142    /** 
     1143     * Create an instance of {@link BaseStyles.FontScheme } 
     1144     *  
     1145     */ 
     1146    public BaseStyles.FontScheme createBaseStylesFontScheme() { 
     1147        return new BaseStyles.FontScheme(); 
     1148    } 
     1149 
     1150    /** 
     1151     * Create an instance of {@link CTScRgbColor } 
     1152     *  
     1153     */ 
     1154    public CTScRgbColor createCTScRgbColor() { 
     1155        return new CTScRgbColor(); 
     1156    } 
     1157 
     1158    /** 
     1159     * Create an instance of {@link CTFillProperties } 
     1160     *  
     1161     */ 
     1162    public CTFillProperties createCTFillProperties() { 
     1163        return new CTFillProperties(); 
     1164    } 
     1165 
     1166    /** 
     1167     * Create an instance of {@link CTNonVisualDrawingProps } 
     1168     *  
     1169     */ 
     1170    public CTNonVisualDrawingProps createCTNonVisualDrawingProps() { 
     1171        return new CTNonVisualDrawingProps(); 
     1172    } 
     1173 
     1174    /** 
     1175     * Create an instance of {@link CTRegularTextRun } 
     1176     *  
     1177     */ 
     1178    public CTRegularTextRun createCTRegularTextRun() { 
     1179        return new CTRegularTextRun(); 
     1180    } 
     1181 
     1182    /** 
     1183     * Create an instance of {@link CTHslColor } 
     1184     *  
     1185     */ 
     1186    public CTHslColor createCTHslColor() { 
     1187        return new CTHslColor(); 
     1188    } 
     1189 
     1190    /** 
     1191     * Create an instance of {@link CTFlatText } 
     1192     *  
     1193     */ 
     1194    public CTFlatText createCTFlatText() { 
     1195        return new CTFlatText(); 
     1196    } 
     1197 
     1198    /** 
     1199     * Create an instance of {@link CTTextBlipBullet } 
     1200     *  
     1201     */ 
     1202    public CTTextBlipBullet createCTTextBlipBullet() { 
     1203        return new CTTextBlipBullet(); 
     1204    } 
     1205 
     1206    /** 
     1207     * Create an instance of {@link CTGroupTransform2D } 
     1208     *  
     1209     */ 
     1210    public CTGroupTransform2D createCTGroupTransform2D() { 
     1211        return new CTGroupTransform2D(); 
     1212    } 
     1213 
     1214    /** 
     1215     * Create an instance of {@link CTGroupLocking } 
     1216     *  
     1217     */ 
     1218    public CTGroupLocking createCTGroupLocking() { 
     1219        return new CTGroupLocking(); 
     1220    } 
     1221 
     1222    /** 
     1223     * Create an instance of {@link CTPictureNonVisual } 
     1224     *  
     1225     */ 
     1226    public CTPictureNonVisual createCTPictureNonVisual() { 
     1227        return new CTPictureNonVisual(); 
     1228    } 
     1229 
     1230    /** 
     1231     * Create an instance of {@link CTPath2D } 
     1232     *  
     1233     */ 
     1234    public CTPath2D createCTPath2D() { 
     1235        return new CTPath2D(); 
     1236    } 
     1237 
     1238    /** 
     1239     * Create an instance of {@link CTPictureOld } 
     1240     *  
     1241     */ 
     1242    public CTPictureOld createCTPictureOld() { 
     1243        return new CTPictureOld(); 
     1244    } 
     1245 
     1246    /** 
     1247     * Create an instance of {@link CTFixedPercentage } 
     1248     *  
     1249     */ 
     1250    public CTFixedPercentage createCTFixedPercentage() { 
     1251        return new CTFixedPercentage(); 
     1252    } 
     1253 
     1254    /** 
     1255     * Create an instance of {@link CTPath2DCubicBezierTo } 
     1256     *  
     1257     */ 
     1258    public CTPath2DCubicBezierTo createCTPath2DCubicBezierTo() { 
     1259        return new CTPath2DCubicBezierTo(); 
     1260    } 
     1261 
     1262    /** 
     1263     * Create an instance of {@link CTSRgbColor } 
     1264     *  
     1265     */ 
     1266    public CTSRgbColor createCTSRgbColor() { 
     1267        return new CTSRgbColor(); 
     1268    } 
     1269 
     1270    /** 
     1271     * Create an instance of {@link CTTextCharBullet } 
     1272     *  
     1273     */ 
     1274    public CTTextCharBullet createCTTextCharBullet() { 
     1275        return new CTTextCharBullet(); 
     1276    } 
     1277 
     1278    /** 
     1279     * Create an instance of {@link CTAlphaModulateEffect } 
     1280     *  
     1281     */ 
     1282    public CTAlphaModulateEffect createCTAlphaModulateEffect() { 
     1283        return new CTAlphaModulateEffect(); 
     1284    } 
     1285 
     1286    /** 
     1287     * Create an instance of {@link CTTextNormalAutofit } 
     1288     *  
     1289     */ 
     1290    public CTTextNormalAutofit createCTTextNormalAutofit() { 
     1291        return new CTTextNormalAutofit(); 
     1292    } 
     1293 
     1294    /** 
     1295     * Create an instance of {@link CTPositivePercentage } 
     1296     *  
     1297     */ 
     1298    public CTPositivePercentage createCTPositivePercentage() { 
     1299        return new CTPositivePercentage(); 
     1300    } 
     1301 
     1302    /** 
     1303     * Create an instance of {@link CTBackdrop } 
     1304     *  
     1305     */ 
     1306    public CTBackdrop createCTBackdrop() { 
     1307        return new CTBackdrop(); 
     1308    } 
     1309 
     1310    /** 
     1311     * Create an instance of {@link CTGradientStop } 
     1312     *  
     1313     */ 
     1314    public CTGradientStop createCTGradientStop() { 
     1315        return new CTGradientStop(); 
     1316    } 
     1317 
     1318    /** 
     1319     * Create an instance of {@link CTComplementTransform } 
     1320     *  
     1321     */ 
     1322    public CTComplementTransform createCTComplementTransform() { 
     1323        return new CTComplementTransform(); 
     1324    } 
     1325 
     1326    /** 
     1327     * Create an instance of {@link CTXYAdjustHandle } 
     1328     *  
     1329     */ 
     1330    public CTXYAdjustHandle createCTXYAdjustHandle() { 
     1331        return new CTXYAdjustHandle(); 
     1332    } 
     1333 
     1334    /** 
     1335     * Create an instance of {@link CTTextBulletSizePercent } 
     1336     *  
     1337     */ 
     1338    public CTTextBulletSizePercent createCTTextBulletSizePercent() { 
     1339        return new CTTextBulletSizePercent(); 
     1340    } 
     1341 
     1342    /** 
     1343     * Create an instance of {@link CTAlphaOutsetEffect } 
     1344     *  
     1345     */ 
     1346    public CTAlphaOutsetEffect createCTAlphaOutsetEffect() { 
     1347        return new CTAlphaOutsetEffect(); 
     1348    } 
     1349 
     1350    /** 
     1351     * Create an instance of {@link CTPictureLocking } 
     1352     *  
     1353     */ 
     1354    public CTPictureLocking createCTPictureLocking() { 
     1355        return new CTPictureLocking(); 
     1356    } 
     1357 
     1358    /** 
     1359     * Create an instance of {@link CTTintEffect } 
     1360     *  
     1361     */ 
     1362    public CTTintEffect createCTTintEffect() { 
     1363        return new CTTintEffect(); 
     1364    } 
     1365 
     1366    /** 
     1367     * Create an instance of {@link CTLineProperties } 
     1368     *  
     1369     */ 
     1370    public CTLineProperties createCTLineProperties() { 
     1371        return new CTLineProperties(); 
     1372    } 
     1373 
     1374    /** 
     1375     * Create an instance of {@link CTConnectionSiteList } 
     1376     *  
     1377     */ 
     1378    public CTConnectionSiteList createCTConnectionSiteList() { 
     1379        return new CTConnectionSiteList(); 
     1380    } 
     1381 
     1382    /** 
     1383     * Create an instance of {@link CTTextBulletColorFollowText } 
     1384     *  
     1385     */ 
     1386    public CTTextBulletColorFollowText createCTTextBulletColorFollowText() { 
     1387        return new CTTextBulletColorFollowText(); 
     1388    } 
     1389 
     1390    /** 
     1391     * Create an instance of {@link CTWrapThrough } 
     1392     *  
     1393     */ 
     1394    public CTWrapThrough createCTWrapThrough() { 
     1395        return new CTWrapThrough(); 
     1396    } 
     1397 
     1398    /** 
     1399     * Create an instance of {@link CTTextCharacterProperties } 
     1400     *  
     1401     */ 
     1402    public CTTextCharacterProperties createCTTextCharacterProperties() { 
     1403        return new CTTextCharacterProperties(); 
     1404    } 
     1405 
     1406    /** 
     1407     * Create an instance of {@link Pic } 
     1408     *  
     1409     */ 
     1410    public Pic createPic() { 
     1411        return new Pic(); 
     1412    } 
     1413 
     1414    /** 
     1415     * Create an instance of {@link CTScene3D } 
     1416     *  
     1417     */ 
     1418    public CTScene3D createCTScene3D() { 
     1419        return new CTScene3D(); 
     1420    } 
     1421 
     1422    /** 
     1423     * Create an instance of {@link CTReflectionEffect } 
     1424     *  
     1425     */ 
     1426    public CTReflectionEffect createCTReflectionEffect() { 
     1427        return new CTReflectionEffect(); 
     1428    } 
     1429 
     1430    /** 
     1431     * Create an instance of {@link CTBiLevelEffect } 
     1432     *  
     1433     */ 
     1434    public CTBiLevelEffect createCTBiLevelEffect() { 
     1435        return new CTBiLevelEffect(); 
     1436    } 
     1437 
     1438    /** 
     1439     * Create an instance of {@link CTEffectReference } 
     1440     *  
     1441     */ 
     1442    public CTEffectReference createCTEffectReference() { 
     1443        return new CTEffectReference(); 
     1444    } 
     1445 
     1446    /** 
     1447     * Create an instance of {@link CTAlphaBiLevelEffect } 
     1448     *  
     1449     */ 
     1450    public CTAlphaBiLevelEffect createCTAlphaBiLevelEffect() { 
     1451        return new CTAlphaBiLevelEffect(); 
     1452    } 
     1453 
     1454    /** 
     1455     * Create an instance of {@link GraphicData } 
     1456     *  
     1457     */ 
     1458    public GraphicData createGraphicData() { 
     1459        return new GraphicData(); 
     1460    } 
     1461 
     1462    /** 
     1463     * Create an instance of {@link Anchor } 
     1464     *  
     1465     */ 
     1466    public Anchor createAnchor() { 
     1467        return new Anchor(); 
     1468    } 
     1469 
     1470    /** 
     1471     * Create an instance of {@link CTGrayscaleEffect } 
     1472     *  
     1473     */ 
     1474    public CTGrayscaleEffect createCTGrayscaleEffect() { 
     1475        return new CTGrayscaleEffect(); 
     1476    } 
     1477 
     1478    /** 
     1479     * Create an instance of {@link CTTransform2D } 
     1480     *  
     1481     */ 
     1482    public CTTransform2D createCTTransform2D() { 
     1483        return new CTTransform2D(); 
     1484    } 
     1485 
     1486    /** 
     1487     * Create an instance of {@link CTAlphaCeilingEffect } 
     1488     *  
     1489     */ 
     1490    public CTAlphaCeilingEffect createCTAlphaCeilingEffect() { 
     1491        return new CTAlphaCeilingEffect(); 
    921492    } 
    931493 
     
    1011501 
    1021502    /** 
    103      * Create an instance of {@link CTTextNormalAutofit } 
    104      *  
    105      */ 
    106     public CTTextNormalAutofit createCTTextNormalAutofit() { 
    107         return new CTTextNormalAutofit(); 
    108     } 
    109  
    110     /** 
    111      * Create an instance of {@link CTAlphaOutsetEffect } 
    112      *  
    113      */ 
    114     public CTAlphaOutsetEffect createCTAlphaOutsetEffect() { 
    115         return new CTAlphaOutsetEffect(); 
    116     } 
    117  
    118     /** 
    119      * Create an instance of {@link CTGroupShapeProperties } 
    120      *  
    121      */ 
    122     public CTGroupShapeProperties createCTGroupShapeProperties() { 
    123         return new CTGroupShapeProperties(); 
    124     } 
    125  
    126     /** 
    127      * Create an instance of {@link CTPoint2D } 
    128      *  
    129      */ 
    130     public CTPoint2D createCTPoint2D() { 
    131         return new CTPoint2D(); 
     1503     * Create an instance of {@link CTPositiveFixedPercentage } 
     1504     *  
     1505     */ 
     1506    public CTPositiveFixedPercentage createCTPositiveFixedPercentage() { 
     1507        return new CTPositiveFixedPercentage(); 
     1508    } 
     1509 
     1510    /** 
     1511     * Create an instance of {@link CTTextTabStop } 
     1512     *  
     1513     */ 
     1514    public CTTextTabStop createCTTextTabStop() { 
     1515        return new CTTextTabStop(); 
     1516    } 
     1517 
     1518    /** 
     1519     * Create an instance of {@link CTWrapPath } 
     1520     *  
     1521     */ 
     1522    public CTWrapPath createCTWrapPath() { 
     1523        return new CTWrapPath(); 
     1524    } 
     1525 
     1526    /** 
     1527     * Create an instance of {@link CTConnection } 
     1528     *  
     1529     */ 
     1530    public CTConnection createCTConnection() { 
     1531        return new CTConnection(); 
     1532    } 
     1533 
     1534    /** 
     1535     * Create an instance of {@link CTAngle } 
     1536     *  
     1537     */ 
     1538    public CTAngle createCTAngle() { 
     1539        return new CTAngle(); 
     1540    } 
     1541 
     1542    /** 
     1543     * Create an instance of {@link CTNonVisualGraphicFrameProperties } 
     1544     *  
     1545     */ 
     1546    public CTNonVisualGraphicFrameProperties createCTNonVisualGraphicFrameProperties() { 
     1547        return new CTNonVisualGraphicFrameProperties(); 
     1548    } 
     1549 
     1550    /** 
     1551     * Create an instance of {@link CTWrapNone } 
     1552     *  
     1553     */ 
     1554    public CTWrapNone createCTWrapNone() { 
     1555        return new CTWrapNone(); 
     1556    } 
     1557 
     1558    /** 
     1559     * Create an instance of {@link CTTextUnderlineLineFollowText } 
     1560     *  
     1561     */ 
     1562    public CTTextUnderlineLineFollowText createCTTextUnderlineLineFollowText() { 
     1563        return new CTTextUnderlineLineFollowText(); 
     1564    } 
     1565 
     1566    /** 
     1567     * Create an instance of {@link CTTextParagraph } 
     1568     *  
     1569     */ 
     1570    public CTTextParagraph createCTTextParagraph() { 
     1571        return new CTTextParagraph(); 
     1572    } 
     1573 
     1574    /** 
     1575     * Create an instance of {@link CTAlphaReplaceEffect } 
     1576     *  
     1577     */ 
     1578    public CTAlphaReplaceEffect createCTAlphaReplaceEffect() { 
     1579        return new CTAlphaReplaceEffect(); 
    1321580    } 
    1331581 
     
    1411589 
    1421590    /** 
     1591     * Create an instance of {@link CTPolarAdjustHandle } 
     1592     *  
     1593     */ 
     1594    public CTPolarAdjustHandle createCTPolarAdjustHandle() { 
     1595        return new CTPolarAdjustHandle(); 
     1596    } 
     1597 
     1598    /** 
     1599     * Create an instance of {@link CTColorMappingOverride } 
     1600     *  
     1601     */ 
     1602    public CTColorMappingOverride createCTColorMappingOverride() { 
     1603        return new CTColorMappingOverride(); 
     1604    } 
     1605 
     1606    /** 
     1607     * Create an instance of {@link CTDuotoneEffect } 
     1608     *  
     1609     */ 
     1610    public CTDuotoneEffect createCTDuotoneEffect() { 
     1611        return new CTDuotoneEffect(); 
     1612    } 
     1613 
     1614    /** 
     1615     * Create an instance of {@link CTAdjustHandleList } 
     1616     *  
     1617     */ 
     1618    public CTAdjustHandleList createCTAdjustHandleList() { 
     1619        return new CTAdjustHandleList(); 
     1620    } 
     1621 
     1622    /** 
     1623     * Create an instance of {@link Graphic } 
     1624     *  
     1625     */ 
     1626    public Graphic createGraphic() { 
     1627        return new Graphic(); 
     1628    } 
     1629 
     1630    /** 
     1631     * Create an instance of {@link CTAlphaInverseEffect } 
     1632     *  
     1633     */ 
     1634    public CTAlphaInverseEffect createCTAlphaInverseEffect() { 
     1635        return new CTAlphaInverseEffect(); 
     1636    } 
     1637 
     1638    /** 
     1639     * Create an instance of {@link CTColorMRU } 
     1640     *  
     1641     */ 
     1642    public CTColorMRU createCTColorMRU() { 
     1643        return new CTColorMRU(); 
     1644    } 
     1645 
     1646    /** 
     1647     * Create an instance of {@link CTLightRig } 
     1648     *  
     1649     */ 
     1650    public CTLightRig createCTLightRig() { 
     1651        return new CTLightRig(); 
     1652    } 
     1653 
     1654    /** 
     1655     * Create an instance of {@link CTBaseStylesOverride.FontScheme } 
     1656     *  
     1657     */ 
     1658    public CTBaseStylesOverride.FontScheme createCTBaseStylesOverrideFontScheme() { 
     1659        return new CTBaseStylesOverride.FontScheme(); 
     1660    } 
     1661 
     1662    /** 
     1663     * Create an instance of {@link CTGlowEffect } 
     1664     *  
     1665     */ 
     1666    public CTGlowEffect createCTGlowEffect() { 
     1667        return new CTGlowEffect(); 
     1668    } 
     1669 
     1670    /** 
    1431671     * Create an instance of {@link CTColorChangeEffect } 
    1441672     *  
     
    1461674    public CTColorChangeEffect createCTColorChangeEffect() { 
    1471675        return new CTColorChangeEffect(); 
    148     } 
    149  
    150     /** 
    151      * Create an instance of {@link CTBaseStylesOverride.FontScheme } 
    152      *  
    153      */ 
    154     public CTBaseStylesOverride.FontScheme createCTBaseStylesOverrideFontScheme() { 
    155         return new CTBaseStylesOverride.FontScheme(); 
    156     } 
    157  
    158     /** 
    159      * Create an instance of {@link CTTextShapeAutofit } 
    160      *  
    161      */ 
    162     public CTTextShapeAutofit createCTTextShapeAutofit() { 
    163         return new CTTextShapeAutofit(); 
    164     } 
    165  
    166     /** 
    167      * Create an instance of {@link CTTextUnderlineFillFollowText } 
    168      *  
    169      */ 
    170     public CTTextUnderlineFillFollowText createCTTextUnderlineFillFollowText() { 
    171         return new CTTextUnderlineFillFollowText(); 
    172     } 
    173  
    174     /** 
    175      * Create an instance of {@link CTOfficeArtExtensionList } 
    176      *  
    177      */ 
    178     public CTOfficeArtExtensionList createCTOfficeArtExtensionList() { 
    179         return new CTOfficeArtExtensionList(); 
    180     } 
    181  
    182     /** 
    183      * Create an instance of {@link CTTintEffect } 
    184      *  
    185      */ 
    186     public CTTintEffect createCTTintEffect() { 
    187         return new CTTintEffect(); 
    188     } 
    189  
    190     /** 
    191      * Create an instance of {@link CTTextSpacingPoint } 
    192      *  
    193      */ 
    194     public CTTextSpacingPoint createCTTextSpacingPoint() { 
    195         return new CTTextSpacingPoint(); 
    196     } 
    197  
    198     /** 
    199      * Create an instance of {@link CTVector3D } 
    200      *  
    201      */ 
    202     public CTVector3D createCTVector3D() { 
    203         return new CTVector3D(); 
    204     } 
    205  
    206     /** 
    207      * Create an instance of {@link CTBaseStylesOverride } 
    208      *  
    209      */ 
    210     public CTBaseStylesOverride createCTBaseStylesOverride() { 
    211         return new CTBaseStylesOverride(); 
    212     } 
    213  
    214     /** 
    215      * Create an instance of {@link CTCustomColor } 
    216      *  
    217      */ 
    218     public CTCustomColor createCTCustomColor() { 
    219         return new CTCustomColor(); 
    220     } 
    221  
    222     /** 
    223      * Create an instance of {@link CTLineProperties } 
    224      *  
    225      */ 
    226     public CTLineProperties createCTLineProperties() { 
    227         return new CTLineProperties(); 
    228     } 
    229  
    230     /** 
    231      * Create an instance of {@link CTInverseGammaTransform } 
    232      *  
    233      */ 
    234     public CTInverseGammaTransform createCTInverseGammaTransform() { 
    235         return new CTInverseGammaTransform(); 
    236     } 
    237  
    238     /** 
    239      * Create an instance of {@link CTAlphaModulateEffect } 
    240      *  
    241      */ 
    242     public CTAlphaModulateEffect createCTAlphaModulateEffect() { 
    243         return new CTAlphaModulateEffect(); 
    244     } 
    245  
    246     /** 
    247      * Create an instance of {@link CTTextNoBullet } 
    248      *  
    249      */ 
    250     public CTTextNoBullet createCTTextNoBullet() { 
    251         return new CTTextNoBullet(); 
    252     } 
    253  
    254     /** 
    255      * Create an instance of {@link CTShapeProperties } 
    256      *  
    257      */ 
    258     public CTShapeProperties createCTShapeProperties() { 
    259         return new CTShapeProperties(); 
    260     } 
    261  
    262     /** 
    263      * Create an instance of {@link Pic } 
    264      *  
    265      */ 
    266     public Pic createPic() { 
    267         return new Pic(); 
    268     } 
    269  
    270     /** 
    271      * Create an instance of {@link CTPictureOld } 
    272      *  
    273      */ 
    274     public CTPictureOld createCTPictureOld() { 
    275         return new CTPictureOld(); 
    276     } 
    277  
    278     /** 
    279      * Create an instance of {@link CTEffectProperties } 
    280      *  
    281      */ 
    282     public CTEffectProperties createCTEffectProperties() { 
    283         return new CTEffectProperties(); 
    284     } 
    285  
    286     /** 
    287      * Create an instance of {@link CTTextParagraph } 
    288      *  
    289      */ 
    290     public CTTextParagraph createCTTextParagraph() { 
    291         return new CTTextParagraph(); 
    292     } 
    293  
    294     /** 
    295      * Create an instance of {@link CTOfficeArtExtension } 
    296      *  
    297      */ 
    298     public CTOfficeArtExtension createCTOfficeArtExtension() { 
    299         return new CTOfficeArtExtension(); 
    300     } 
    301  
    302     /** 
    303      * Create an instance of {@link CTConnectionSiteList } 
    304      *  
    305      */ 
    306     public CTConnectionSiteList createCTConnectionSiteList() { 
    307         return new CTConnectionSiteList(); 
    308     } 
    309  
    310     /** 
    311      * Create an instance of {@link CTFillStyleList } 
    312      *  
    313      */ 
    314     public CTFillStyleList createCTFillStyleList() { 
    315         return new CTFillStyleList(); 
    316     } 
    317  
    318     /** 
    319      * Create an instance of {@link CTPositivePercentage } 
    320      *  
    321      */ 
    322     public CTPositivePercentage createCTPositivePercentage() { 
    323         return new CTPositivePercentage(); 
    324     } 
    325  
    326     /** 
    327      * Create an instance of {@link CTWrapTopBottom } 
    328      *  
    329      */ 
    330     public CTWrapTopBottom createCTWrapTopBottom() { 
    331         return new CTWrapTopBottom(); 
    332     } 
    333  
    334     /** 
    335      * Create an instance of {@link CTEffectStyleItem } 
    336      *  
    337      */ 
    338     public CTEffectStyleItem createCTEffectStyleItem() { 
    339         return new CTEffectStyleItem(); 
    340     } 
    341  
    342     /** 
    343      * Create an instance of {@link CTEffectStyleList } 
    344      *  
    345      */ 
    346     public CTEffectStyleList createCTEffectStyleList() { 
    347         return new CTEffectStyleList(); 
    348     } 
    349  
    350     /** 
    351      * Create an instance of {@link CTColorMappingOverride } 
    352      *  
    353      */ 
    354     public CTColorMappingOverride createCTColorMappingOverride() { 
    355         return new CTColorMappingOverride(); 
    356     } 
    357  
    358     /** 
    359      * Create an instance of {@link CTPositiveFixedAngle } 
    360      *  
    361      */ 
    362     public CTPositiveFixedAngle createCTPositiveFixedAngle() { 
    363         return new CTPositiveFixedAngle(); 
    364     } 
    365  
    366     /** 
    367      * Create an instance of {@link CTNonVisualPictureProperties } 
    368      *  
    369      */ 
    370     public CTNonVisualPictureProperties createCTNonVisualPictureProperties() { 
    371         return new CTNonVisualPictureProperties(); 
    372     } 
    373  
    374     /** 
    375      * Create an instance of {@link CTGammaTransform } 
    376      *  
    377      */ 
    378     public CTGammaTransform createCTGammaTransform() { 
    379         return new CTGammaTransform(); 
    380     } 
    381  
    382     /** 
    383      * Create an instance of {@link CTEmptyElement } 
    384      *  
    385      */ 
    386     public CTEmptyElement createCTEmptyElement() { 
    387         return new CTEmptyElement(); 
    388     } 
    389  
    390     /** 
    391      * Create an instance of {@link CTColorScheme } 
    392      *  
    393      */ 
    394     public CTColorScheme createCTColorScheme() { 
    395         return new CTColorScheme(); 
    396     } 
    397  
    398     /** 
    399      * Create an instance of {@link CTTextListStyle } 
    400      *  
    401      */ 
    402     public CTTextListStyle createCTTextListStyle() { 
    403         return new CTTextListStyle(); 
    404     } 
    405  
    406     /** 
    407      * Create an instance of {@link CTGeomRect } 
    408      *  
    409      */ 
    410     public CTGeomRect createCTGeomRect() { 
    411         return new CTGeomRect(); 
    412     } 
    413  
    414     /** 
    415      * Create an instance of {@link CTAlphaBiLevelEffect } 
    416      *  
    417      */ 
    418     public CTAlphaBiLevelEffect createCTAlphaBiLevelEffect() { 
    419         return new CTAlphaBiLevelEffect(); 
    420     } 
    421  
    422     /** 
    423      * Create an instance of {@link CTEmbeddedWAVAudioFile } 
    424      *  
    425      */ 
    426     public CTEmbeddedWAVAudioFile createCTEmbeddedWAVAudioFile() { 
    427         return new CTEmbeddedWAVAudioFile(); 
    428     } 
    429  
    430     /** 
    431      * Create an instance of {@link CTRelativeOffsetEffect } 
    432      *  
    433      */ 
    434     public CTRelativeOffsetEffect createCTRelativeOffsetEffect() { 
    435         return new CTRelativeOffsetEffect(); 
    436     } 
    437  
    438     /** 
    439      * Create an instance of {@link CTColorSchemeList } 
    440      *  
    441      */ 
    442     public CTColorSchemeList createCTColorSchemeList() { 
    443         return new CTColorSchemeList(); 
    444     } 
    445  
    446     /** 
    447      * Create an instance of {@link CTPercentage } 
    448      *  
    449      */ 
    450     public CTPercentage createCTPercentage() { 
    451         return new CTPercentage(); 
    452     } 
    453  
    454     /** 
    455      * Create an instance of {@link CTColorReplaceEffect } 
    456      *  
    457      */ 
    458     public CTColorReplaceEffect createCTColorReplaceEffect() { 
    459         return new CTColorReplaceEffect(); 
    460     } 
    461  
    462     /** 
    463      * Create an instance of {@link CTClipboardStyleSheet } 
    464      *  
    465      */ 
    466     public CTClipboardStyleSheet createCTClipboardStyleSheet() { 
    467         return new CTClipboardStyleSheet(); 
    468     } 
    469  
    470     /** 
    471      * Create an instance of {@link CTFillProperties } 
    472      *  
    473      */ 
    474     public CTFillProperties createCTFillProperties() { 
    475         return new CTFillProperties(); 
    476     } 
    477  
    478     /** 
    479      * Create an instance of {@link CTLineJoinMiterProperties } 
    480      *  
    481      */ 
    482     public CTLineJoinMiterProperties createCTLineJoinMiterProperties() { 
    483         return new CTLineJoinMiterProperties(); 
    484     } 
    485  
    486     /** 
    487      * Create an instance of {@link CTSRgbColor } 
    488      *  
    489      */ 
    490     public CTSRgbColor createCTSRgbColor() { 
    491         return new CTSRgbColor(); 
    492     } 
    493  
    494     /** 
    495      * Create an instance of {@link CTOuterShadowEffect } 
    496      *  
    497      */ 
    498     public CTOuterShadowEffect createCTOuterShadowEffect() { 
    499         return new CTOuterShadowEffect(); 
    500     } 
    501  
    502     /** 
    503      * Create an instance of {@link CTTransform2D } 
    504      *  
    505      */ 
    506     public CTTransform2D createCTTransform2D() { 
    507         return new CTTransform2D(); 
    508     } 
    509  
    510     /** 
    511      * Create an instance of {@link CTBevel } 
    512      *  
    513      */ 
    514     public CTBevel createCTBevel() { 
    515         return new CTBevel(); 
    516     } 
    517  
    518     /** 
    519      * Create an instance of {@link CTEffectList } 
    520      *  
    521      */ 
    522     public CTEffectList createCTEffectList() { 
    523         return new CTEffectList(); 
    524     } 
    525  
    526     /** 
    527      * Create an instance of {@link CTBlurEffect } 
    528      *  
    529      */ 
    530     public CTBlurEffect createCTBlurEffect() { 
    531         return new CTBlurEffect(); 
    532     } 
    533  
    534     /** 
    535      * Create an instance of {@link CTGrayscaleEffect } 
    536      *  
    537      */ 
    538     public CTGrayscaleEffect createCTGrayscaleEffect() { 
    539         return new CTGrayscaleEffect(); 
    540     } 
    541  
    542     /** 
    543      * Create an instance of {@link CTAlphaReplaceEffect } 
    544      *  
    545      */ 
    546     public CTAlphaReplaceEffect createCTAlphaReplaceEffect() { 
    547         return new CTAlphaReplaceEffect(); 
    548     } 
    549  
    550     /** 
    551      * Create an instance of {@link CTBlipFillProperties } 
    552      *  
    553      */ 
    554     public CTBlipFillProperties createCTBlipFillProperties() { 
    555         return new CTBlipFillProperties(); 
    556     } 
    557  
    558     /** 
    559      * Create an instance of {@link CTEffectContainer } 
    560      *  
    561      */ 
    562     public CTEffectContainer createCTEffectContainer() { 
    563         return new CTEffectContainer(); 
    564     } 
    565  
    566     /** 
    567      * Create an instance of {@link CTPresetLineDashProperties } 
    568      *  
    569      */ 
    570     public CTPresetLineDashProperties createCTPresetLineDashProperties() { 
    571         return new CTPresetLineDashProperties(); 
    572     } 
    573  
    574     /** 
    575      * Create an instance of {@link CTTextBulletSizePoint } 
    576      *  
    577      */ 
    578     public CTTextBulletSizePoint createCTTextBulletSizePoint() { 
    579         return new CTTextBulletSizePoint(); 
    580     } 
    581  
    582     /** 
    583      * Create an instance of {@link CTFixedPercentage } 
    584      *  
    585      */ 
    586     public CTFixedPercentage createCTFixedPercentage() { 
    587         return new CTFixedPercentage(); 
    588     } 
    589  
    590     /** 
    591      * Create an instance of {@link CTFillEffect } 
    592      *  
    593      */ 
    594     public CTFillEffect createCTFillEffect() { 
    595         return new CTFillEffect(); 
    596     } 
    597  
    598     /** 
    599      * Create an instance of {@link CTPolarAdjustHandle } 
    600      *  
    601      */ 
    602     public CTPolarAdjustHandle createCTPolarAdjustHandle() { 
    603         return new CTPolarAdjustHandle(); 
    604     } 
    605  
    606     /** 
    607      * Create an instance of {@link CTBlendEffect } 
    608      *  
    609      */ 
    610     public CTBlendEffect createCTBlendEffect() { 
    611         return new CTBlendEffect(); 
    612     } 
    613  
    614     /** 
    615      * Create an instance of {@link CTTextUnderlineFillGroupWrapper } 
    616      *  
    617      */ 
    618     public CTTextUnderlineFillGroupWrapper createCTTextUnderlineFillGroupWrapper() { 
    619         return new CTTextUnderlineFillGroupWrapper(); 
    620     } 
    621  
    622     /** 
    623      * Create an instance of {@link Inline } 
    624      *  
    625      */ 
    626     public Inline createInline() { 
    627         return new Inline(); 
    628     } 
    629  
    630     /** 
    631      * Create an instance of {@link CTBackdrop } 
    632      *  
    633      */ 
    634     public CTBackdrop createCTBackdrop() { 
    635         return new CTBackdrop(); 
    636     } 
    637  
    638     /** 
    639      * Create an instance of {@link CTNonVisualConnectorProperties } 
    640      *  
    641      */ 
    642     public CTNonVisualConnectorProperties createCTNonVisualConnectorProperties() { 
    643         return new CTNonVisualConnectorProperties(); 
    644     } 
    645  
    646     /** 
    647      * Create an instance of {@link CTScene3D } 
    648      *  
    649      */ 
    650     public CTScene3D createCTScene3D() { 
    651         return new CTScene3D(); 
    652     } 
    653  
    654     /** 
    655      * Create an instance of {@link CTGroupLocking } 
    656      *  
    657      */ 
    658     public CTGroupLocking createCTGroupLocking() { 
    659         return new CTGroupLocking(); 
    660     } 
    661  
    662     /** 
    663      * Create an instance of {@link CTTextCharBullet } 
    664      *  
    665      */ 
    666     public CTTextCharBullet createCTTextCharBullet() { 
    667         return new CTTextCharBullet(); 
    668     } 
    669  
    670     /** 
    671      * Create an instance of {@link CTDashStopList } 
    672      *  
    673      */ 
    674     public CTDashStopList createCTDashStopList() { 
    675         return new CTDashStopList(); 
    676     } 
    677  
    678     /** 
    679      * Create an instance of {@link CTSolidColorFillProperties } 
    680      *  
    681      */ 
    682     public CTSolidColorFillProperties createCTSolidColorFillProperties() { 
    683         return new CTSolidColorFillProperties(); 
    684     } 
    685  
    686     /** 
    687      * Create an instance of {@link CTShapeLocking } 
    688      *  
    689      */ 
    690     public CTShapeLocking createCTShapeLocking() { 
    691         return new CTShapeLocking(); 
    692     } 
    693  
    694     /** 
    695      * Create an instance of {@link CTShapeStyle } 
    696      *  
    697      */ 
    698     public CTShapeStyle createCTShapeStyle() { 
    699         return new CTShapeStyle(); 
    700     } 
    701  
    702     /** 
    703      * Create an instance of {@link CTAlphaFloorEffect } 
    704      *  
    705      */ 
    706     public CTAlphaFloorEffect createCTAlphaFloorEffect() { 
    707         return new CTAlphaFloorEffect(); 
    708     } 
    709  
    710     /** 
    711      * Create an instance of {@link CTBiLevelEffect } 
    712      *  
    713      */ 
    714     public CTBiLevelEffect createCTBiLevelEffect() { 
    715         return new CTBiLevelEffect(); 
    716     } 
    717  
    718     /** 
    719      * Create an instance of {@link CTGroupFillProperties } 
    720      *  
    721      */ 
    722     public CTGroupFillProperties createCTGroupFillProperties() { 
    723         return new CTGroupFillProperties(); 
    724     } 
    725  
    726     /** 
    727      * Create an instance of {@link CTPath2DMoveTo } 
    728      *  
    729      */ 
    730     public CTPath2DMoveTo createCTPath2DMoveTo() { 
    731         return new CTPath2DMoveTo(); 
    732     } 
    733  
    734     /** 
    735      * Create an instance of {@link CTPath2DLineTo } 
    736      *  
    737      */ 
    738     public CTPath2DLineTo createCTPath2DLineTo() { 
    739         return new CTPath2DLineTo(); 
    740     } 
    741  
    742     /** 
    743      * Create an instance of {@link CTPath2DClose } 
    744      *  
    745      */ 
    746     public CTPath2DClose createCTPath2DClose() { 
    747         return new CTPath2DClose(); 
    748     } 
    749  
    750     /** 
    751      * Create an instance of {@link CTCustomColorList } 
    752      *  
    753      */ 
    754     public CTCustomColorList createCTCustomColorList() { 
    755         return new CTCustomColorList(); 
    756     } 
    757  
    758     /** 
    759      * Create an instance of {@link CTColorMRU } 
    760      *  
    761      */ 
    762     public CTColorMRU createCTColorMRU() { 
    763         return new CTColorMRU(); 
    764     } 
    765  
    766     /** 
    767      * Create an instance of {@link FontCollection } 
    768      *  
    769      */ 
    770     public FontCollection createFontCollection() { 
    771         return new FontCollection(); 
    772     } 
    773  
    774     /** 
    775      * Create an instance of {@link CTSystemColor } 
    776      *  
    777      */ 
    778     public CTSystemColor createCTSystemColor() { 
    779         return new CTSystemColor(); 
    780     } 
    781  
    782     /** 
    783      * Create an instance of {@link CTRelativeRect } 
    784      *  
    785      */ 
    786     public CTRelativeRect createCTRelativeRect() { 
    787         return new CTRelativeRect(); 
    788     } 
    789  
    790     /** 
    791      * Create an instance of {@link CTInverseTransform } 
    792      *  
    793      */ 
    794     public CTInverseTransform createCTInverseTransform() { 
    795         return new CTInverseTransform(); 
    796     } 
    797  
    798     /** 
    799      * Create an instance of {@link CTXYAdjustHandle } 
    800      *  
    801      */ 
    802     public CTXYAdjustHandle createCTXYAdjustHandle() { 
    803         return new CTXYAdjustHandle(); 
    804     } 
    805  
    806     /** 
    807      * Create an instance of {@link CTTextTabStopList } 
    808      *  
    809      */ 
    810     public CTTextTabStopList createCTTextTabStopList() { 
    811         return new CTTextTabStopList(); 
    812     } 
    813  
    814     /** 
    815      * Create an instance of {@link CTGeomGuideList } 
    816      *  
    817      */ 
    818     public CTGeomGuideList createCTGeomGuideList() { 
    819         return new CTGeomGuideList(); 
    820     } 
    821  
    822     /** 
    823      * Create an instance of {@link CTTextTabStop } 
    824      *  
    825      */ 
    826     public CTTextTabStop createCTTextTabStop() { 
    827         return new CTTextTabStop(); 
    828     } 
    829  
    830     /** 
    831      * Create an instance of {@link CTRatio } 
    832      *  
    833      */ 
    834     public CTRatio createCTRatio() { 
    835         return new CTRatio(); 
    836     } 
    837  
    838     /** 
    839      * Create an instance of {@link CTPathShadeProperties } 
    840      *  
    841      */ 
    842     public CTPathShadeProperties createCTPathShadeProperties() { 
    843         return new CTPathShadeProperties(); 
    844     } 
    845  
    846     /** 
    847      * Create an instance of {@link CTPositiveSize2D } 
    848      *  
    849      */ 
    850     public CTPositiveSize2D createCTPositiveSize2D() { 
    851         return new CTPositiveSize2D(); 
    852     } 
    853  
    854     /** 
    855      * Create an instance of {@link GraphicData } 
    856      *  
    857      */ 
    858     public GraphicData createGraphicData() { 
    859         return new GraphicData(); 
    860     } 
    861  
    862     /** 
    863      * Create an instance of {@link CTPictureNonVisual } 
    864      *  
    865      */ 
    866     public CTPictureNonVisual createCTPictureNonVisual() { 
    867         return new CTPictureNonVisual(); 
    868     } 
    869  
    870     /** 
    871      * Create an instance of {@link CTLinearShadeProperties } 
    872      *  
    873      */ 
    874     public CTLinearShadeProperties createCTLinearShadeProperties() { 
    875         return new CTLinearShadeProperties(); 
    876     } 
    877  
    878     /** 
    879      * Create an instance of {@link CTTextSpacing } 
    880      *  
    881      */ 
    882     public CTTextSpacing createCTTextSpacing() { 
    883         return new CTTextSpacing(); 
    884     } 
    885  
    886     /** 
    887      * Create an instance of {@link CTDuotoneEffect } 
    888      *  
    889      */ 
    890     public CTDuotoneEffect createCTDuotoneEffect() { 
    891         return new CTDuotoneEffect(); 
    892     } 
    893  
    894     /** 
    895      * Create an instance of {@link CTStyleMatrixReference } 
    896      *  
    897      */ 
    898     public CTStyleMatrixReference createCTStyleMatrixReference() { 
    899         return new CTStyleMatrixReference(); 
    900     } 
    901  
    902     /** 
    903      * Create an instance of {@link CTDashStop } 
    904      *  
    905      */ 
    906     public CTDashStop createCTDashStop() { 
    907         return new CTDashStop(); 
    908     } 
    909  
    910     /** 
    911      * Create an instance of {@link CTPath2D } 
    912      *  
    913      */ 
    914     public CTPath2D createCTPath2D() { 
    915         return new CTPath2D(); 
    916     } 
    917  
    918     /** 
    919      * Create an instance of {@link CTLineJoinBevel } 
    920      *  
    921      */ 
    922     public CTLineJoinBevel createCTLineJoinBevel() { 
    923         return new CTLineJoinBevel(); 
    924     } 
    925  
    926     /** 
    927      * Create an instance of {@link CTTextLineBreak } 
    928      *  
    929      */ 
    930     public CTTextLineBreak createCTTextLineBreak() { 
    931         return new CTTextLineBreak(); 
    932     } 
    933  
    934     /** 
    935      * Create an instance of {@link CTWrapTight } 
    936      *  
    937      */ 
    938     public CTWrapTight createCTWrapTight() { 
    939         return new CTWrapTight(); 
    940     } 
    941  
    942     /** 
    943      * Create an instance of {@link CTPath2DCubicBezierTo } 
    944      *  
    945      */ 
    946     public CTPath2DCubicBezierTo createCTPath2DCubicBezierTo() { 
    947         return new CTPath2DCubicBezierTo(); 
    948     } 
    949  
    950     /** 
    951      * Create an instance of {@link CTNonVisualGraphicFrameProperties } 
    952      *  
    953      */ 
    954     public CTNonVisualGraphicFrameProperties createCTNonVisualGraphicFrameProperties() { 
    955         return new CTNonVisualGraphicFrameProperties(); 
    956     } 
    957  
    958     /** 
    959      * Create an instance of {@link CTPath2DArcTo } 
    960      *  
    961      */ 
    962     public CTPath2DArcTo createCTPath2DArcTo() { 
    963         return new CTPath2DArcTo(); 
    964     } 
    965  
    966     /** 
    967      * Create an instance of {@link FontCollection.Font } 
    968      *  
    969      */ 
    970     public FontCollection.Font createFontCollectionFont() { 
    971         return new FontCollection.Font(); 
    972     } 
    973  
    974     /** 
    975      * Create an instance of {@link CTReflectionEffect } 
    976      *  
    977      */ 
    978     public CTReflectionEffect createCTReflectionEffect() { 
    979         return new CTReflectionEffect(); 
    980     } 
    981  
    982     /** 
    983      * Create an instance of {@link CTTextUnderlineLineFollowText } 
    984      *  
    985      */ 
    986     public CTTextUnderlineLineFollowText createCTTextUnderlineLineFollowText() { 
    987         return new CTTextUnderlineLineFollowText(); 
    988     } 
    989  
    990     /** 
    991      * Create an instance of {@link CTWrapSquare } 
    992      *  
    993      */ 
    994     public CTWrapSquare createCTWrapSquare() { 
    995         return new CTWrapSquare(); 
    996     } 
    997  
    998     /** 
    999      * Create an instance of {@link TextFont } 
    1000      *  
    1001      */ 
    1002     public TextFont createTextFont() { 
    1003         return new TextFont(); 
    1004     } 
    1005  
    1006     /** 
    1007      * Create an instance of {@link CTConnection } 
    1008      *  
    1009      */ 
    1010     public CTConnection createCTConnection() { 
    1011         return new CTConnection(); 
    1012     } 
    1013  
    1014     /** 
    1015      * Create an instance of {@link CTSoftEdgesEffect } 
    1016      *  
    1017      */ 
    1018     public CTSoftEdgesEffect createCTSoftEdgesEffect() { 
    1019         return new CTSoftEdgesEffect(); 
    1020     } 
    1021  
    1022     /** 
    1023      * Create an instance of {@link CTWrapThrough } 
    1024      *  
    1025      */ 
    1026     public CTWrapThrough createCTWrapThrough() { 
    1027         return new CTWrapThrough(); 
    1028     } 
    1029  
    1030     /** 
    1031      * Create an instance of {@link CTAlphaCeilingEffect } 
    1032      *  
    1033      */ 
    1034     public CTAlphaCeilingEffect createCTAlphaCeilingEffect() { 
    1035         return new CTAlphaCeilingEffect(); 
    1036     } 
    1037  
    1038     /** 
    1039      * Create an instance of {@link CTFontReference } 
    1040      *  
    1041      */ 
    1042     public CTFontReference createCTFontReference() { 
    1043         return new CTFontReference(); 
    1044     } 
    1045  
    1046     /** 
    1047      * Create an instance of {@link CTWrapPath } 
    1048      *  
    1049      */ 
    1050     public CTWrapPath createCTWrapPath() { 
    1051         return new CTWrapPath(); 
    1052     } 
    1053  
    1054     /** 
    1055      * Create an instance of {@link CTGraphicalObjectFrameLocking } 
    1056      *  
    1057      */ 
    1058     public CTGraphicalObjectFrameLocking createCTGraphicalObjectFrameLocking() { 
    1059         return new CTGraphicalObjectFrameLocking(); 
    1060     } 
    1061  
    1062     /** 
    1063      * Create an instance of {@link CTNonVisualDrawingProps } 
    1064      *  
    1065      */ 
    1066     public CTNonVisualDrawingProps createCTNonVisualDrawingProps() { 
    1067         return new CTNonVisualDrawingProps(); 
    1068     } 
    1069  
    1070     /** 
    1071      * Create an instance of {@link CTNonVisualGroupDrawingShapeProps } 
    1072      *  
    1073      */ 
    1074     public CTNonVisualGroupDrawingShapeProps createCTNonVisualGroupDrawingShapeProps() { 
    1075         return new CTNonVisualGroupDrawingShapeProps(); 
    1076     } 
    1077  
    1078     /** 
    1079      * Create an instance of {@link CTPosV } 
    1080      *  
    1081      */ 
    1082     public CTPosV createCTPosV() { 
    1083         return new CTPosV(); 
    1084     } 
    1085  
    1086     /** 
    1087      * Create an instance of {@link CTShape3D } 
    1088      *  
    1089      */ 
    1090     public CTShape3D createCTShape3D() { 
    1091         return new CTShape3D(); 
    1092     } 
    1093  
    1094     /** 
    1095      * Create an instance of {@link CTColorSchemeAndMapping } 
    1096      *  
    1097      */ 
    1098     public CTColorSchemeAndMapping createCTColorSchemeAndMapping() { 
    1099         return new CTColorSchemeAndMapping(); 
    1100     } 
    1101  
    1102     /** 
    1103      * Create an instance of {@link CTPresetColor } 
    1104      *  
    1105      */ 
    1106     public CTPresetColor createCTPresetColor() { 
    1107         return new CTPresetColor(); 
    1108     } 
    1109  
    1110     /** 
    1111      * Create an instance of {@link CTTextCharacterProperties } 
    1112      *  
    1113      */ 
    1114     public CTTextCharacterProperties createCTTextCharacterProperties() { 
    1115         return new CTTextCharacterProperties(); 
    1116     } 
    1117  
    1118     /** 
    1119      * Create an instance of {@link CTTextAutonumberBullet } 
    1120      *  
    1121      */ 
    1122     public CTTextAutonumberBullet createCTTextAutonumberBullet() { 
    1123         return new CTTextAutonumberBullet(); 
    1124     } 
    1125  
    1126     /** 
    1127      * Create an instance of {@link CTWrapNone } 
    1128      *  
    1129      */ 
    1130     public CTWrapNone createCTWrapNone() { 
    1131         return new CTWrapNone(); 
    1132     } 
    1133  
    1134     /** 
    1135      * Create an instance of {@link CTTextBulletSizePercent } 
    1136      *  
    1137      */ 
    1138     public CTTextBulletSizePercent createCTTextBulletSizePercent() { 
    1139         return new CTTextBulletSizePercent(); 
    1140     } 
    1141  
    1142     /** 
    1143      * Create an instance of {@link Anchor } 
    1144      *  
    1145      */ 
    1146     public Anchor createAnchor() { 
    1147         return new Anchor(); 
    1148     } 
    1149  
    1150     /** 
    1151      * Create an instance of {@link CTLightRig } 
    1152      *  
    1153      */ 
    1154     public CTLightRig createCTLightRig() { 
    1155         return new CTLightRig(); 
    1156     } 
    1157  
    1158     /** 
    1159      * Create an instance of {@link CTStretchInfoProperties } 
    1160      *  
    1161      */ 
    1162     public CTStretchInfoProperties createCTStretchInfoProperties() { 
    1163         return new CTStretchInfoProperties(); 
    1164     } 
    1165  
    1166     /** 
    1167      * Create an instance of {@link CTGlowEffect } 
    1168      *  
    1169      */ 
    1170     public CTGlowEffect createCTGlowEffect() { 
    1171         return new CTGlowEffect(); 
    1172     } 
    1173  
    1174     /** 
    1175      * Create an instance of {@link CTTextField } 
    1176      *  
    1177      */ 
    1178     public CTTextField createCTTextField() { 
    1179         return new CTTextField(); 
    1180     } 
    1181  
    1182     /** 
    1183      * Create an instance of {@link Graphic } 
    1184      *  
    1185      */ 
    1186     public Graphic createGraphic() { 
    1187         return new Graphic(); 
    1188     } 
    1189  
    1190     /** 
    1191      * Create an instance of {@link CTGrayscaleTransform } 
    1192      *  
    1193      */ 
    1194     public CTGrayscaleTransform createCTGrayscaleTransform() { 
    1195         return new CTGrayscaleTransform(); 
    1196     } 
    1197  
    1198     /** 
    1199      * Create an instance of {@link CTConnectionSite } 
    1200      *  
    1201      */ 
    1202     public CTConnectionSite createCTConnectionSite() { 
    1203         return new CTConnectionSite(); 
    1204     } 
    1205  
    1206     /** 
    1207      * Create an instance of {@link CTEffectExtent } 
    1208      *  
    1209      */ 
    1210     public CTEffectExtent createCTEffectExtent() { 
    1211         return new CTEffectExtent(); 
    1212     } 
    1213  
    1214     /** 
    1215      * Create an instance of {@link CTLineEndProperties } 
    1216      *  
    1217      */ 
    1218     public CTLineEndProperties createCTLineEndProperties() { 
    1219         return new CTLineEndProperties(); 
    1220     } 
    1221  
    1222     /** 
    1223      * Create an instance of {@link CTRegularTextRun } 
    1224      *  
    1225      */ 
    1226     public CTRegularTextRun createCTRegularTextRun() { 
    1227         return new CTRegularTextRun(); 
    1228     } 
    1229  
    1230     /** 
    1231      * Create an instance of {@link CTPresetGeometry2D } 
    1232      *  
    1233      */ 
    1234     public CTPresetGeometry2D createCTPresetGeometry2D() { 
    1235         return new CTPresetGeometry2D(); 
    1236     } 
    1237  
    1238     /** 
    1239      * Create an instance of {@link CTColorMapping } 
    1240      *  
    1241      */ 
    1242     public CTColorMapping createCTColorMapping() { 
    1243         return new CTColorMapping(); 
    1244     } 
    1245  
    1246     /** 
    1247      * Create an instance of {@link CTScRgbColor } 
    1248      *  
    1249      */ 
    1250     public CTScRgbColor createCTScRgbColor() { 
    1251         return new CTScRgbColor(); 
    1252     } 
    1253  
    1254     /** 
    1255      * Create an instance of {@link CTAlphaModulateFixedEffect } 
    1256      *  
    1257      */ 
    1258     public CTAlphaModulateFixedEffect createCTAlphaModulateFixedEffect() { 
    1259         return new CTAlphaModulateFixedEffect(); 
    1260     } 
    1261  
    1262     /** 
    1263      * Create an instance of {@link CTGradientStop } 
    1264      *  
    1265      */ 
    1266     public CTGradientStop createCTGradientStop() { 
    1267         return new CTGradientStop(); 
    1268     } 
    1269  
    1270     /** 
    1271      * Create an instance of {@link CTPositiveFixedPercentage } 
    1272      *  
    1273      */ 
    1274     public CTPositiveFixedPercentage createCTPositiveFixedPercentage() { 
    1275         return new CTPositiveFixedPercentage(); 
    1276     } 
    1277  
    1278     /** 
    1279      * Create an instance of {@link CTPictureLocking } 
    1280      *  
    1281      */ 
    1282     public CTPictureLocking createCTPictureLocking() { 
    1283         return new CTPictureLocking(); 
    1284     } 
    1285  
    1286     /** 
    1287      * Create an instance of {@link CTAlphaInverseEffect } 
    1288      *  
    1289      */ 
    1290     public CTAlphaInverseEffect createCTAlphaInverseEffect() { 
    1291         return new CTAlphaInverseEffect(); 
    1292     } 
    1293  
    1294     /** 
    1295      * Create an instance of {@link CTTextBodyProperties } 
    1296      *  
    1297      */ 
    1298     public CTTextBodyProperties createCTTextBodyProperties() { 
    1299         return new CTTextBodyProperties(); 
    1300     } 
    1301  
    1302     /** 
    1303      * Create an instance of {@link CTPatternFillProperties } 
    1304      *  
    1305      */ 
    1306     public CTPatternFillProperties createCTPatternFillProperties() { 
    1307         return new CTPatternFillProperties(); 
    1308     } 
    1309  
    1310     /** 
    1311      * Create an instance of {@link CTCustomGeometry2D } 
    1312      *  
    1313      */ 
    1314     public CTCustomGeometry2D createCTCustomGeometry2D() { 
    1315         return new CTCustomGeometry2D(); 
    1316     } 
    1317  
    1318     /** 
    1319      * Create an instance of {@link CTTileInfoProperties } 
    1320      *  
    1321      */ 
    1322     public CTTileInfoProperties createCTTileInfoProperties() { 
    1323         return new CTTileInfoProperties(); 
    1324     } 
    1325  
    1326     /** 
    1327      * Create an instance of {@link CTHSLEffect } 
    1328      *  
    1329      */ 
    1330     public CTHSLEffect createCTHSLEffect() { 
    1331         return new CTHSLEffect(); 
    1332     } 
    1333  
    1334     /** 
    1335      * Create an instance of {@link CTGroupTransform2D } 
    1336      *  
    1337      */ 
    1338     public CTGroupTransform2D createCTGroupTransform2D() { 
    1339         return new CTGroupTransform2D(); 
    1340     } 
    1341  
    1342     /** 
    1343      * Create an instance of {@link CTDefaultShapeDefinition } 
    1344      *  
    1345      */ 
    1346     public CTDefaultShapeDefinition createCTDefaultShapeDefinition() { 
    1347         return new CTDefaultShapeDefinition(); 
    1348     } 
    1349  
    1350     /** 
    1351      * Create an instance of {@link CTPresetShadowEffect } 
    1352      *  
    1353      */ 
    1354     public CTPresetShadowEffect createCTPresetShadowEffect() { 
    1355         return new CTPresetShadowEffect(); 
    1356     } 
    1357  
    1358     /** 
    1359      * Create an instance of {@link CTConnectorLocking } 
    1360      *  
    1361      */ 
    1362     public CTConnectorLocking createCTConnectorLocking() { 
    1363         return new CTConnectorLocking(); 
    1364     } 
    1365  
    1366     /** 
    1367      * Create an instance of {@link CTPoint3D } 
    1368      *  
    1369      */ 
    1370     public CTPoint3D createCTPoint3D() { 
    1371         return new CTPoint3D(); 
    1372     } 
    1373  
    1374     /** 
    1375      * Create an instance of {@link CTGradientStopList } 
    1376      *  
    1377      */ 
    1378     public CTGradientStopList createCTGradientStopList() { 
    1379         return new CTGradientStopList(); 
    1380     } 
    1381  
    1382     /** 
    1383      * Create an instance of {@link CTPresetTextShape } 
    1384      *  
    1385      */ 
    1386     public CTPresetTextShape createCTPresetTextShape() { 
    1387         return new CTPresetTextShape(); 
    1388     } 
    1389  
    1390     /** 
    1391      * Create an instance of {@link CTEffectReference } 
    1392      *  
    1393      */ 
    1394     public CTEffectReference createCTEffectReference() { 
    1395         return new CTEffectReference(); 
    1396     } 
    1397  
    1398     /** 
    1399      * Create an instance of {@link CTPosH } 
    1400      *  
    1401      */ 
    1402     public CTPosH createCTPosH() { 
    1403         return new CTPosH(); 
    1404     } 
    1405  
    1406     /** 
    1407      * Create an instance of {@link CTNoFillProperties } 
    1408      *  
    1409      */ 
    1410     public CTNoFillProperties createCTNoFillProperties() { 
    1411         return new CTNoFillProperties(); 
    1412     } 
    1413  
    1414     /** 
    1415      * Create an instance of {@link BaseStyles.FontScheme } 
    1416      *  
    1417      */ 
    1418     public BaseStyles.FontScheme createBaseStylesFontScheme() { 
    1419         return new BaseStyles.FontScheme(); 
    1420     } 
    1421  
    1422     /** 
    1423      * Create an instance of {@link CTFlatText } 
    1424      *  
    1425      */ 
    1426     public CTFlatText createCTFlatText() { 
    1427         return new CTFlatText(); 
    1428     } 
    1429  
    1430     /** 
    1431      * Create an instance of {@link CTSchemeColor } 
    1432      *  
    1433      */ 
    1434     public CTSchemeColor createCTSchemeColor() { 
    1435         return new CTSchemeColor(); 
    1436     } 
    1437  
    1438     /** 
    1439      * Create an instance of {@link CTPath2DQuadBezierTo } 
    1440      *  
    1441      */ 
    1442     public CTPath2DQuadBezierTo createCTPath2DQuadBezierTo() { 
    1443         return new CTPath2DQuadBezierTo(); 
    1444     } 
    1445  
    1446     /** 
    1447      * Create an instance of {@link CTTextBulletColorFollowText } 
    1448      *  
    1449      */ 
    1450     public CTTextBulletColorFollowText createCTTextBulletColorFollowText() { 
    1451         return new CTTextBulletColorFollowText(); 
    1452     } 
    1453  
    1454     /** 
    1455      * Create an instance of {@link CTAngle } 
    1456      *  
    1457      */ 
    1458     public CTAngle createCTAngle() { 
    1459         return new CTAngle(); 
    1460     } 
    1461  
    1462     /** 
    1463      * Create an instance of {@link CTBackgroundFillStyleList } 
    1464      *  
    1465      */ 
    1466     public CTBackgroundFillStyleList createCTBackgroundFillStyleList() { 
    1467         return new CTBackgroundFillStyleList(); 
    1468     } 
    1469  
    1470     /** 
    1471      * Create an instance of {@link CTComplementTransform } 
    1472      *  
    1473      */ 
    1474     public CTComplementTransform createCTComplementTransform() { 
    1475         return new CTComplementTransform(); 
    1476     } 
    1477  
    1478     /** 
    1479      * Create an instance of {@link CTGradientFillProperties } 
    1480      *  
    1481      */ 
    1482     public CTGradientFillProperties createCTGradientFillProperties() { 
    1483         return new CTGradientFillProperties(); 
    1484     } 
    1485  
    1486     /** 
    1487      * Create an instance of {@link Theme } 
    1488      *  
    1489      */ 
    1490     public Theme createTheme() { 
    1491         return new Theme(); 
    1492     } 
    1493  
    1494     /** 
    1495      * Create an instance of {@link CTTextBulletTypefaceFollowText } 
    1496      *  
    1497      */ 
    1498     public CTTextBulletTypefaceFollowText createCTTextBulletTypefaceFollowText() { 
    1499         return new CTTextBulletTypefaceFollowText(); 
    1500     } 
    1501  
    1502     /** 
    1503      * Create an instance of {@link CTScale2D } 
    1504      *  
    1505      */ 
    1506     public CTScale2D createCTScale2D() { 
    1507         return new CTScale2D(); 
    1508     } 
    1509  
    1510     /** 
    1511      * Create an instance of {@link BaseStyles } 
    1512      *  
    1513      */ 
    1514     public BaseStyles createBaseStyles() { 
    1515         return new BaseStyles(); 
    1516     } 
    1517  
    1518     /** 
    1519      * Create an instance of {@link CTHslColor } 
    1520      *  
    1521      */ 
    1522     public CTHslColor createCTHslColor() { 
    1523         return new CTHslColor(); 
    1524     } 
    1525  
    1526     /** 
    1527      * Create an instance of {@link CTAdjustHandleList } 
    1528      *  
    1529      */ 
    1530     public CTAdjustHandleList createCTAdjustHandleList() { 
    1531         return new CTAdjustHandleList(); 
    1532     } 
    1533  
    1534     /** 
    1535      * Create an instance of {@link CTNonVisualDrawingShapeProps } 
    1536      *  
    1537      */ 
    1538     public CTNonVisualDrawingShapeProps createCTNonVisualDrawingShapeProps() { 
    1539         return new CTNonVisualDrawingShapeProps(); 
    1540     } 
    1541  
    1542     /** 
    1543      * Create an instance of {@link CTLineJoinRound } 
    1544      *  
    1545      */ 
    1546     public CTLineJoinRound createCTLineJoinRound() { 
    1547         return new CTLineJoinRound(); 
    1548     } 
    1549  
    1550     /** 
    1551      * Create an instance of {@link CTHyperlink } 
    1552      *  
    1553      */ 
    1554     public CTHyperlink createCTHyperlink() { 
    1555         return new CTHyperlink(); 
    1556     } 
    1557  
    1558     /** 
    1559      * Create an instance of {@link CTPath2DList } 
    1560      *  
    1561      */ 
    1562     public CTPath2DList createCTPath2DList() { 
    1563         return new CTPath2DList(); 
    1564     } 
    1565  
    1566     /** 
    1567      * Create an instance of {@link CTGeomGuide } 
    1568      *  
    1569      */ 
    1570     public CTGeomGuide createCTGeomGuide() { 
    1571         return new CTGeomGuide(); 
    1572     } 
    1573  
    1574     /** 
    1575      * Create an instance of {@link CTTextBody } 
    1576      *  
    1577      */ 
    1578     public CTTextBody createCTTextBody() { 
    1579         return new CTTextBody(); 
    1580     } 
    1581  
    1582     /** 
    1583      * Create an instance of {@link CTTextParagraphProperties } 
    1584      *  
    1585      */ 
    1586     public CTTextParagraphProperties createCTTextParagraphProperties() { 
    1587         return new CTTextParagraphProperties(); 
    1588     } 
    1589  
    1590     /** 
    1591      * Create an instance of {@link CTLuminanceEffect } 
    1592      *  
    1593      */ 
    1594     public CTLuminanceEffect createCTLuminanceEffect() { 
    1595         return new CTLuminanceEffect(); 
    1596     } 
    1597  
    1598     /** 
    1599      * Create an instance of {@link CTTransformEffect } 
    1600      *  
    1601      */ 
    1602     public CTTransformEffect createCTTransformEffect() { 
    1603         return new CTTransformEffect(); 
    1604     } 
    1605  
    1606     /** 
    1607      * Create an instance of {@link CTFillOverlayEffect } 
    1608      *  
    1609      */ 
    1610     public CTFillOverlayEffect createCTFillOverlayEffect() { 
    1611         return new CTFillOverlayEffect(); 
    1612     } 
    1613  
    1614     /** 
    1615      * Create an instance of {@link CTTextBulletSizeFollowText } 
    1616      *  
    1617      */ 
    1618     public CTTextBulletSizeFollowText createCTTextBulletSizeFollowText() { 
    1619         return new CTTextBulletSizeFollowText(); 
    1620     } 
    1621  
    1622     /** 
    1623      * Create an instance of {@link CTTextSpacingPercent } 
    1624      *  
    1625      */ 
    1626     public CTTextSpacingPercent createCTTextSpacingPercent() { 
    1627         return new CTTextSpacingPercent(); 
    1628     } 
    1629  
    1630     /** 
    1631      * Create an instance of {@link CTBlip } 
    1632      *  
    1633      */ 
    1634     public CTBlip createCTBlip() { 
    1635         return new CTBlip(); 
    1636     } 
    1637  
    1638     /** 
    1639      * Create an instance of {@link CTSphereCoords } 
    1640      *  
    1641      */ 
    1642     public CTSphereCoords createCTSphereCoords() { 
    1643         return new CTSphereCoords(); 
    1644     } 
    1645  
    1646     /** 
    1647      * Create an instance of {@link CTTextBlipBullet } 
    1648      *  
    1649      */ 
    1650     public CTTextBlipBullet createCTTextBlipBullet() { 
    1651         return new CTTextBlipBullet(); 
    1652     } 
    1653  
    1654     /** 
    1655      * Create an instance of {@link CTColor } 
    1656      *  
    1657      */ 
    1658     public CTColor createCTColor() { 
    1659         return new CTColor(); 
    1660     } 
    1661  
    1662     /** 
    1663      * Create an instance of {@link CTTextNoAutofit } 
    1664      *  
    1665      */ 
    1666     public CTTextNoAutofit createCTTextNoAutofit() { 
    1667         return new CTTextNoAutofit(); 
    1668     } 
    1669  
    1670     /** 
    1671      * Create an instance of {@link CTLineStyleList } 
    1672      *  
    1673      */ 
    1674     public CTLineStyleList createCTLineStyleList() { 
    1675         return new CTLineStyleList(); 
    16761676    } 
    16771677 
     
    17131713 
    17141714    /** 
     1715     * Create an instance of {@link JAXBElement }{@code <}{@link Anchor }{@code >}} 
     1716     *  
     1717     */ 
     1718    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", name = "anchor") 
     1719    public JAXBElement<Anchor> createAnchor(Anchor value) { 
     1720        return new JAXBElement<Anchor>(_Anchor_QNAME, Anchor.class, null, value); 
     1721    } 
     1722 
     1723    /** 
    17151724     * Create an instance of {@link JAXBElement }{@code <}{@link Pic }{@code >}} 
    17161725     *  
     
    17221731 
    17231732    /** 
    1724      * Create an instance of {@link JAXBElement }{@code <}{@link Anchor }{@code >}} 
    1725      *  
    1726      */ 
    1727     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", name = "anchor") 
    1728     public JAXBElement<Anchor> createAnchor(Anchor value) { 
    1729         return new JAXBElement<Anchor>(_Anchor_QNAME, Anchor.class, null, value); 
    1730     } 
    1731  
    1732     /** 
    17331733     * Create an instance of {@link JAXBElement }{@code <}{@link CTBlip }{@code >}} 
    17341734     *  
     
    17431743     *  
    17441744     */ 
     1745    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSystemColor.class) 
     1746    public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorAlpha(CTPositiveFixedPercentage value) { 
     1747        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value); 
     1748    } 
     1749 
     1750    /** 
     1751     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1752     *  
     1753     */ 
     1754    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSystemColor.class) 
     1755    public JAXBElement<CTPercentage> createCTSystemColorLum(CTPercentage value) { 
     1756        return new JAXBElement<CTPercentage>(_CTSystemColorLum_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1757    } 
     1758 
     1759    /** 
     1760     * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
     1761     *  
     1762     */ 
     1763    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSystemColor.class) 
     1764    public JAXBElement<CTGammaTransform> createCTSystemColorGamma(CTGammaTransform value) { 
     1765        return new JAXBElement<CTGammaTransform>(_CTSystemColorGamma_QNAME, CTGammaTransform.class, CTSystemColor.class, value); 
     1766    } 
     1767 
     1768    /** 
     1769     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
     1770     *  
     1771     */ 
     1772    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSystemColor.class) 
     1773    public JAXBElement<CTInverseGammaTransform> createCTSystemColorInvGamma(CTInverseGammaTransform value) { 
     1774        return new JAXBElement<CTInverseGammaTransform>(_CTSystemColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSystemColor.class, value); 
     1775    } 
     1776 
     1777    /** 
     1778     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     1779     *  
     1780     */ 
     1781    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSystemColor.class) 
     1782    public JAXBElement<CTPositivePercentage> createCTSystemColorAlphaMod(CTPositivePercentage value) { 
     1783        return new JAXBElement<CTPositivePercentage>(_CTSystemColorAlphaMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value); 
     1784    } 
     1785 
     1786    /** 
     1787     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1788     *  
     1789     */ 
     1790    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSystemColor.class) 
     1791    public JAXBElement<CTPercentage> createCTSystemColorRedOff(CTPercentage value) { 
     1792        return new JAXBElement<CTPercentage>(_CTSystemColorRedOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1793    } 
     1794 
     1795    /** 
     1796     * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
     1797     *  
     1798     */ 
     1799    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSystemColor.class) 
     1800    public JAXBElement<CTFixedPercentage> createCTSystemColorAlphaOff(CTFixedPercentage value) { 
     1801        return new JAXBElement<CTFixedPercentage>(_CTSystemColorAlphaOff_QNAME, CTFixedPercentage.class, CTSystemColor.class, value); 
     1802    } 
     1803 
     1804    /** 
     1805     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1806     *  
     1807     */ 
     1808    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSystemColor.class) 
     1809    public JAXBElement<CTPercentage> createCTSystemColorGreenOff(CTPercentage value) { 
     1810        return new JAXBElement<CTPercentage>(_CTSystemColorGreenOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1811    } 
     1812 
     1813    /** 
     1814     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1815     *  
     1816     */ 
     1817    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSystemColor.class) 
     1818    public JAXBElement<CTPercentage> createCTSystemColorRedMod(CTPercentage value) { 
     1819        return new JAXBElement<CTPercentage>(_CTSystemColorRedMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1820    } 
     1821 
     1822    /** 
     1823     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
     1824     *  
     1825     */ 
     1826    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSystemColor.class) 
     1827    public JAXBElement<CTPositiveFixedAngle> createCTSystemColorHue(CTPositiveFixedAngle value) { 
     1828        return new JAXBElement<CTPositiveFixedAngle>(_CTSystemColorHue_QNAME, CTPositiveFixedAngle.class, CTSystemColor.class, value); 
     1829    } 
     1830 
     1831    /** 
     1832     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1833     *  
     1834     */ 
     1835    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSystemColor.class) 
     1836    public JAXBElement<CTPercentage> createCTSystemColorSatOff(CTPercentage value) { 
     1837        return new JAXBElement<CTPercentage>(_CTSystemColorSatOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1838    } 
     1839 
     1840    /** 
     1841     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1842     *  
     1843     */ 
     1844    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSystemColor.class) 
     1845    public JAXBElement<CTPercentage> createCTSystemColorGreenMod(CTPercentage value) { 
     1846        return new JAXBElement<CTPercentage>(_CTSystemColorGreenMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1847    } 
     1848 
     1849    /** 
     1850     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1851     *  
     1852     */ 
     1853    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSystemColor.class) 
     1854    public JAXBElement<CTPercentage> createCTSystemColorSat(CTPercentage value) { 
     1855        return new JAXBElement<CTPercentage>(_CTSystemColorSat_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1856    } 
     1857 
     1858    /** 
     1859     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1860     *  
     1861     */ 
     1862    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSystemColor.class) 
     1863    public JAXBElement<CTPercentage> createCTSystemColorBlue(CTPercentage value) { 
     1864        return new JAXBElement<CTPercentage>(_CTSystemColorBlue_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1865    } 
     1866 
     1867    /** 
     1868     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1869     *  
     1870     */ 
     1871    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSystemColor.class) 
     1872    public JAXBElement<CTPercentage> createCTSystemColorRed(CTPercentage value) { 
     1873        return new JAXBElement<CTPercentage>(_CTSystemColorRed_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1874    } 
     1875 
     1876    /** 
     1877     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1878     *  
     1879     */ 
     1880    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSystemColor.class) 
     1881    public JAXBElement<CTPercentage> createCTSystemColorSatMod(CTPercentage value) { 
     1882        return new JAXBElement<CTPercentage>(_CTSystemColorSatMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1883    } 
     1884 
     1885    /** 
     1886     * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
     1887     *  
     1888     */ 
     1889    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSystemColor.class) 
     1890    public JAXBElement<CTAngle> createCTSystemColorHueOff(CTAngle value) { 
     1891        return new JAXBElement<CTAngle>(_CTSystemColorHueOff_QNAME, CTAngle.class, CTSystemColor.class, value); 
     1892    } 
     1893 
     1894    /** 
     1895     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1896     *  
     1897     */ 
     1898    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSystemColor.class) 
     1899    public JAXBElement<CTPercentage> createCTSystemColorBlueMod(CTPercentage value) { 
     1900        return new JAXBElement<CTPercentage>(_CTSystemColorBlueMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1901    } 
     1902 
     1903    /** 
     1904     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     1905     *  
     1906     */ 
     1907    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSystemColor.class) 
     1908    public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorShade(CTPositiveFixedPercentage value) { 
     1909        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorShade_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value); 
     1910    } 
     1911 
     1912    /** 
     1913     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1914     *  
     1915     */ 
     1916    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSystemColor.class) 
     1917    public JAXBElement<CTPercentage> createCTSystemColorLumMod(CTPercentage value) { 
     1918        return new JAXBElement<CTPercentage>(_CTSystemColorLumMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1919    } 
     1920 
     1921    /** 
     1922     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
     1923     *  
     1924     */ 
     1925    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSystemColor.class) 
     1926    public JAXBElement<CTInverseTransform> createCTSystemColorInv(CTInverseTransform value) { 
     1927        return new JAXBElement<CTInverseTransform>(_CTSystemColorInv_QNAME, CTInverseTransform.class, CTSystemColor.class, value); 
     1928    } 
     1929 
     1930    /** 
     1931     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1932     *  
     1933     */ 
     1934    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSystemColor.class) 
     1935    public JAXBElement<CTPercentage> createCTSystemColorLumOff(CTPercentage value) { 
     1936        return new JAXBElement<CTPercentage>(_CTSystemColorLumOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1937    } 
     1938 
     1939    /** 
     1940     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     1941     *  
     1942     */ 
     1943    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSystemColor.class) 
     1944    public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorTint(CTPositiveFixedPercentage value) { 
     1945        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorTint_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value); 
     1946    } 
     1947 
     1948    /** 
     1949     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1950     *  
     1951     */ 
     1952    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSystemColor.class) 
     1953    public JAXBElement<CTPercentage> createCTSystemColorGreen(CTPercentage value) { 
     1954        return new JAXBElement<CTPercentage>(_CTSystemColorGreen_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1955    } 
     1956 
     1957    /** 
     1958     * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
     1959     *  
     1960     */ 
     1961    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSystemColor.class) 
     1962    public JAXBElement<CTComplementTransform> createCTSystemColorComp(CTComplementTransform value) { 
     1963        return new JAXBElement<CTComplementTransform>(_CTSystemColorComp_QNAME, CTComplementTransform.class, CTSystemColor.class, value); 
     1964    } 
     1965 
     1966    /** 
     1967     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1968     *  
     1969     */ 
     1970    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSystemColor.class) 
     1971    public JAXBElement<CTPercentage> createCTSystemColorBlueOff(CTPercentage value) { 
     1972        return new JAXBElement<CTPercentage>(_CTSystemColorBlueOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
     1973    } 
     1974 
     1975    /** 
     1976     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     1977     *  
     1978     */ 
     1979    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSystemColor.class) 
     1980    public JAXBElement<CTPositivePercentage> createCTSystemColorHueMod(CTPositivePercentage value) { 
     1981        return new JAXBElement<CTPositivePercentage>(_CTSystemColorHueMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value); 
     1982    } 
     1983 
     1984    /** 
     1985     * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
     1986     *  
     1987     */ 
     1988    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSystemColor.class) 
     1989    public JAXBElement<CTGrayscaleTransform> createCTSystemColorGray(CTGrayscaleTransform value) { 
     1990        return new JAXBElement<CTGrayscaleTransform>(_CTSystemColorGray_QNAME, CTGrayscaleTransform.class, CTSystemColor.class, value); 
     1991    } 
     1992 
     1993    /** 
     1994     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     1995     *  
     1996     */ 
     1997    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTPresetColor.class) 
     1998    public JAXBElement<CTPercentage> createCTPresetColorLum(CTPercentage value) { 
     1999        return new JAXBElement<CTPercentage>(_CTSystemColorLum_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2000    } 
     2001 
     2002    /** 
     2003     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2004     *  
     2005     */ 
    17452006    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTPresetColor.class) 
    17462007    public JAXBElement<CTPositiveFixedPercentage> createCTPresetColorAlpha(CTPositiveFixedPercentage value) { 
    1747         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value); 
    1748     } 
    1749  
    1750     /** 
    1751      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    1752      *  
    1753      */ 
    1754     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTPresetColor.class) 
    1755     public JAXBElement<CTPercentage> createCTPresetColorLum(CTPercentage value) { 
    1756         return new JAXBElement<CTPercentage>(_CTPresetColorLum_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2008        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value); 
    17572009    } 
    17582010 
     
    17632015    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTPresetColor.class) 
    17642016    public JAXBElement<CTGammaTransform> createCTPresetColorGamma(CTGammaTransform value) { 
    1765         return new JAXBElement<CTGammaTransform>(_CTPresetColorGamma_QNAME, CTGammaTransform.class, CTPresetColor.class, value); 
     2017        return new JAXBElement<CTGammaTransform>(_CTSystemColorGamma_QNAME, CTGammaTransform.class, CTPresetColor.class, value); 
    17662018    } 
    17672019 
     
    17722024    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTPresetColor.class) 
    17732025    public JAXBElement<CTInverseGammaTransform> createCTPresetColorInvGamma(CTInverseGammaTransform value) { 
    1774         return new JAXBElement<CTInverseGammaTransform>(_CTPresetColorInvGamma_QNAME, CTInverseGammaTransform.class, CTPresetColor.class, value); 
     2026        return new JAXBElement<CTInverseGammaTransform>(_CTSystemColorInvGamma_QNAME, CTInverseGammaTransform.class, CTPresetColor.class, value); 
    17752027    } 
    17762028 
     
    17812033    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTPresetColor.class) 
    17822034    public JAXBElement<CTPositivePercentage> createCTPresetColorAlphaMod(CTPositivePercentage value) { 
    1783         return new JAXBElement<CTPositivePercentage>(_CTPresetColorAlphaMod_QNAME, CTPositivePercentage.class, CTPresetColor.class, value); 
     2035        return new JAXBElement<CTPositivePercentage>(_CTSystemColorAlphaMod_QNAME, CTPositivePercentage.class, CTPresetColor.class, value); 
    17842036    } 
    17852037 
     
    17902042    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTPresetColor.class) 
    17912043    public JAXBElement<CTPercentage> createCTPresetColorRedOff(CTPercentage value) { 
    1792         return new JAXBElement<CTPercentage>(_CTPresetColorRedOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2044        return new JAXBElement<CTPercentage>(_CTSystemColorRedOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    17932045    } 
    17942046 
     
    17992051    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTPresetColor.class) 
    18002052    public JAXBElement<CTFixedPercentage> createCTPresetColorAlphaOff(CTFixedPercentage value) { 
    1801         return new JAXBElement<CTFixedPercentage>(_CTPresetColorAlphaOff_QNAME, CTFixedPercentage.class, CTPresetColor.class, value); 
     2053        return new JAXBElement<CTFixedPercentage>(_CTSystemColorAlphaOff_QNAME, CTFixedPercentage.class, CTPresetColor.class, value); 
    18022054    } 
    18032055 
     
    18082060    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTPresetColor.class) 
    18092061    public JAXBElement<CTPercentage> createCTPresetColorGreenOff(CTPercentage value) { 
    1810         return new JAXBElement<CTPercentage>(_CTPresetColorGreenOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2062        return new JAXBElement<CTPercentage>(_CTSystemColorGreenOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    18112063    } 
    18122064 
     
    18172069    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTPresetColor.class) 
    18182070    public JAXBElement<CTPositiveFixedAngle> createCTPresetColorHue(CTPositiveFixedAngle value) { 
    1819         return new JAXBElement<CTPositiveFixedAngle>(_CTPresetColorHue_QNAME, CTPositiveFixedAngle.class, CTPresetColor.class, value); 
     2071        return new JAXBElement<CTPositiveFixedAngle>(_CTSystemColorHue_QNAME, CTPositiveFixedAngle.class, CTPresetColor.class, value); 
    18202072    } 
    18212073 
     
    18262078    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTPresetColor.class) 
    18272079    public JAXBElement<CTPercentage> createCTPresetColorRedMod(CTPercentage value) { 
    1828         return new JAXBElement<CTPercentage>(_CTPresetColorRedMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2080        return new JAXBElement<CTPercentage>(_CTSystemColorRedMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    18292081    } 
    18302082 
     
    18352087    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTPresetColor.class) 
    18362088    public JAXBElement<CTPercentage> createCTPresetColorSatOff(CTPercentage value) { 
    1837         return new JAXBElement<CTPercentage>(_CTPresetColorSatOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2089        return new JAXBElement<CTPercentage>(_CTSystemColorSatOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    18382090    } 
    18392091 
     
    18442096    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTPresetColor.class) 
    18452097    public JAXBElement<CTPercentage> createCTPresetColorGreenMod(CTPercentage value) { 
    1846         return new JAXBElement<CTPercentage>(_CTPresetColorGreenMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2098        return new JAXBElement<CTPercentage>(_CTSystemColorGreenMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    18472099    } 
    18482100 
     
    18532105    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTPresetColor.class) 
    18542106    public JAXBElement<CTPercentage> createCTPresetColorBlue(CTPercentage value) { 
    1855         return new JAXBElement<CTPercentage>(_CTPresetColorBlue_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2107        return new JAXBElement<CTPercentage>(_CTSystemColorBlue_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    18562108    } 
    18572109 
     
    18622114    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTPresetColor.class) 
    18632115    public JAXBElement<CTPercentage> createCTPresetColorSat(CTPercentage value) { 
    1864         return new JAXBElement<CTPercentage>(_CTPresetColorSat_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2116        return new JAXBElement<CTPercentage>(_CTSystemColorSat_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    18652117    } 
    18662118 
     
    18712123    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTPresetColor.class) 
    18722124    public JAXBElement<CTPercentage> createCTPresetColorRed(CTPercentage value) { 
    1873         return new JAXBElement<CTPercentage>(_CTPresetColorRed_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2125        return new JAXBElement<CTPercentage>(_CTSystemColorRed_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    18742126    } 
    18752127 
     
    18802132    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTPresetColor.class) 
    18812133    public JAXBElement<CTPercentage> createCTPresetColorSatMod(CTPercentage value) { 
    1882         return new JAXBElement<CTPercentage>(_CTPresetColorSatMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2134        return new JAXBElement<CTPercentage>(_CTSystemColorSatMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2135    } 
     2136 
     2137    /** 
     2138     * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
     2139     *  
     2140     */ 
     2141    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTPresetColor.class) 
     2142    public JAXBElement<CTAngle> createCTPresetColorHueOff(CTAngle value) { 
     2143        return new JAXBElement<CTAngle>(_CTSystemColorHueOff_QNAME, CTAngle.class, CTPresetColor.class, value); 
    18832144    } 
    18842145 
     
    18892150    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTPresetColor.class) 
    18902151    public JAXBElement<CTPercentage> createCTPresetColorBlueMod(CTPercentage value) { 
    1891         return new JAXBElement<CTPercentage>(_CTPresetColorBlueMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    1892     } 
    1893  
    1894     /** 
    1895      * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
    1896      *  
    1897      */ 
    1898     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTPresetColor.class) 
    1899     public JAXBElement<CTAngle> createCTPresetColorHueOff(CTAngle value) { 
    1900         return new JAXBElement<CTAngle>(_CTPresetColorHueOff_QNAME, CTAngle.class, CTPresetColor.class, value); 
     2152        return new JAXBElement<CTPercentage>(_CTSystemColorBlueMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    19012153    } 
    19022154 
     
    19072159    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTPresetColor.class) 
    19082160    public JAXBElement<CTPositiveFixedPercentage> createCTPresetColorShade(CTPositiveFixedPercentage value) { 
    1909         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorShade_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value); 
     2161        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorShade_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value); 
    19102162    } 
    19112163 
     
    19162168    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTPresetColor.class) 
    19172169    public JAXBElement<CTPercentage> createCTPresetColorLumMod(CTPercentage value) { 
    1918         return new JAXBElement<CTPercentage>(_CTPresetColorLumMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2170        return new JAXBElement<CTPercentage>(_CTSystemColorLumMod_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    19192171    } 
    19202172 
     
    19252177    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTPresetColor.class) 
    19262178    public JAXBElement<CTInverseTransform> createCTPresetColorInv(CTInverseTransform value) { 
    1927         return new JAXBElement<CTInverseTransform>(_CTPresetColorInv_QNAME, CTInverseTransform.class, CTPresetColor.class, value); 
     2179        return new JAXBElement<CTInverseTransform>(_CTSystemColorInv_QNAME, CTInverseTransform.class, CTPresetColor.class, value); 
    19282180    } 
    19292181 
     
    19342186    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTPresetColor.class) 
    19352187    public JAXBElement<CTPercentage> createCTPresetColorLumOff(CTPercentage value) { 
    1936         return new JAXBElement<CTPercentage>(_CTPresetColorLumOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2188        return new JAXBElement<CTPercentage>(_CTSystemColorLumOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    19372189    } 
    19382190 
     
    19432195    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTPresetColor.class) 
    19442196    public JAXBElement<CTPositiveFixedPercentage> createCTPresetColorTint(CTPositiveFixedPercentage value) { 
    1945         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorTint_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value); 
     2197        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorTint_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value); 
    19462198    } 
    19472199 
     
    19522204    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTPresetColor.class) 
    19532205    public JAXBElement<CTPercentage> createCTPresetColorGreen(CTPercentage value) { 
    1954         return new JAXBElement<CTPercentage>(_CTPresetColorGreen_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2206        return new JAXBElement<CTPercentage>(_CTSystemColorGreen_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    19552207    } 
    19562208 
     
    19612213    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTPresetColor.class) 
    19622214    public JAXBElement<CTComplementTransform> createCTPresetColorComp(CTComplementTransform value) { 
    1963         return new JAXBElement<CTComplementTransform>(_CTPresetColorComp_QNAME, CTComplementTransform.class, CTPresetColor.class, value); 
     2215        return new JAXBElement<CTComplementTransform>(_CTSystemColorComp_QNAME, CTComplementTransform.class, CTPresetColor.class, value); 
    19642216    } 
    19652217 
     
    19702222    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTPresetColor.class) 
    19712223    public JAXBElement<CTPercentage> createCTPresetColorBlueOff(CTPercentage value) { 
    1972         return new JAXBElement<CTPercentage>(_CTPresetColorBlueOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
     2224        return new JAXBElement<CTPercentage>(_CTSystemColorBlueOff_QNAME, CTPercentage.class, CTPresetColor.class, value); 
    19732225    } 
    19742226 
     
    19792231    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTPresetColor.class) 
    19802232    public JAXBElement<CTPositivePercentage> createCTPresetColorHueMod(CTPositivePercentage value) { 
    1981         return new JAXBElement<CTPositivePercentage>(_CTPresetColorHueMod_QNAME, CTPositivePercentage.class, CTPresetColor.class, value); 
     2233        return new JAXBElement<CTPositivePercentage>(_CTSystemColorHueMod_QNAME, CTPositivePercentage.class, CTPresetColor.class, value); 
    19822234    } 
    19832235 
     
    19882240    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTPresetColor.class) 
    19892241    public JAXBElement<CTGrayscaleTransform> createCTPresetColorGray(CTGrayscaleTransform value) { 
    1990         return new JAXBElement<CTGrayscaleTransform>(_CTPresetColorGray_QNAME, CTGrayscaleTransform.class, CTPresetColor.class, value); 
     2242        return new JAXBElement<CTGrayscaleTransform>(_CTSystemColorGray_QNAME, CTGrayscaleTransform.class, CTPresetColor.class, value); 
     2243    } 
     2244 
     2245    /** 
     2246     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2247     *  
     2248     */ 
     2249    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSRgbColor.class) 
     2250    public JAXBElement<CTPercentage> createCTSRgbColorLum(CTPercentage value) { 
     2251        return new JAXBElement<CTPercentage>(_CTSystemColorLum_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2252    } 
     2253 
     2254    /** 
     2255     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2256     *  
     2257     */ 
     2258    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSRgbColor.class) 
     2259    public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorAlpha(CTPositiveFixedPercentage value) { 
     2260        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value); 
     2261    } 
     2262 
     2263    /** 
     2264     * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
     2265     *  
     2266     */ 
     2267    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSRgbColor.class) 
     2268    public JAXBElement<CTGammaTransform> createCTSRgbColorGamma(CTGammaTransform value) { 
     2269        return new JAXBElement<CTGammaTransform>(_CTSystemColorGamma_QNAME, CTGammaTransform.class, CTSRgbColor.class, value); 
     2270    } 
     2271 
     2272    /** 
     2273     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
     2274     *  
     2275     */ 
     2276    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSRgbColor.class) 
     2277    public JAXBElement<CTInverseGammaTransform> createCTSRgbColorInvGamma(CTInverseGammaTransform value) { 
     2278        return new JAXBElement<CTInverseGammaTransform>(_CTSystemColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSRgbColor.class, value); 
     2279    } 
     2280 
     2281    /** 
     2282     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2283     *  
     2284     */ 
     2285    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSRgbColor.class) 
     2286    public JAXBElement<CTPercentage> createCTSRgbColorRedOff(CTPercentage value) { 
     2287        return new JAXBElement<CTPercentage>(_CTSystemColorRedOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2288    } 
     2289 
     2290    /** 
     2291     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     2292     *  
     2293     */ 
     2294    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSRgbColor.class) 
     2295    public JAXBElement<CTPositivePercentage> createCTSRgbColorAlphaMod(CTPositivePercentage value) { 
     2296        return new JAXBElement<CTPositivePercentage>(_CTSystemColorAlphaMod_QNAME, CTPositivePercentage.class, CTSRgbColor.class, value); 
     2297    } 
     2298 
     2299    /** 
     2300     * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
     2301     *  
     2302     */ 
     2303    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSRgbColor.class) 
     2304    public JAXBElement<CTFixedPercentage> createCTSRgbColorAlphaOff(CTFixedPercentage value) { 
     2305        return new JAXBElement<CTFixedPercentage>(_CTSystemColorAlphaOff_QNAME, CTFixedPercentage.class, CTSRgbColor.class, value); 
     2306    } 
     2307 
     2308    /** 
     2309     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2310     *  
     2311     */ 
     2312    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSRgbColor.class) 
     2313    public JAXBElement<CTPercentage> createCTSRgbColorGreenOff(CTPercentage value) { 
     2314        return new JAXBElement<CTPercentage>(_CTSystemColorGreenOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2315    } 
     2316 
     2317    /** 
     2318     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
     2319     *  
     2320     */ 
     2321    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSRgbColor.class) 
     2322    public JAXBElement<CTPositiveFixedAngle> createCTSRgbColorHue(CTPositiveFixedAngle value) { 
     2323        return new JAXBElement<CTPositiveFixedAngle>(_CTSystemColorHue_QNAME, CTPositiveFixedAngle.class, CTSRgbColor.class, value); 
     2324    } 
     2325 
     2326    /** 
     2327     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2328     *  
     2329     */ 
     2330    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSRgbColor.class) 
     2331    public JAXBElement<CTPercentage> createCTSRgbColorRedMod(CTPercentage value) { 
     2332        return new JAXBElement<CTPercentage>(_CTSystemColorRedMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2333    } 
     2334 
     2335    /** 
     2336     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2337     *  
     2338     */ 
     2339    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSRgbColor.class) 
     2340    public JAXBElement<CTPercentage> createCTSRgbColorSatOff(CTPercentage value) { 
     2341        return new JAXBElement<CTPercentage>(_CTSystemColorSatOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2342    } 
     2343 
     2344    /** 
     2345     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2346     *  
     2347     */ 
     2348    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSRgbColor.class) 
     2349    public JAXBElement<CTPercentage> createCTSRgbColorGreenMod(CTPercentage value) { 
     2350        return new JAXBElement<CTPercentage>(_CTSystemColorGreenMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2351    } 
     2352 
     2353    /** 
     2354     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2355     *  
     2356     */ 
     2357    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSRgbColor.class) 
     2358    public JAXBElement<CTPercentage> createCTSRgbColorBlue(CTPercentage value) { 
     2359        return new JAXBElement<CTPercentage>(_CTSystemColorBlue_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2360    } 
     2361 
     2362    /** 
     2363     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2364     *  
     2365     */ 
     2366    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSRgbColor.class) 
     2367    public JAXBElement<CTPercentage> createCTSRgbColorSat(CTPercentage value) { 
     2368        return new JAXBElement<CTPercentage>(_CTSystemColorSat_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2369    } 
     2370 
     2371    /** 
     2372     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2373     *  
     2374     */ 
     2375    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSRgbColor.class) 
     2376    public JAXBElement<CTPercentage> createCTSRgbColorRed(CTPercentage value) { 
     2377        return new JAXBElement<CTPercentage>(_CTSystemColorRed_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2378    } 
     2379 
     2380    /** 
     2381     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2382     *  
     2383     */ 
     2384    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSRgbColor.class) 
     2385    public JAXBElement<CTPercentage> createCTSRgbColorSatMod(CTPercentage value) { 
     2386        return new JAXBElement<CTPercentage>(_CTSystemColorSatMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2387    } 
     2388 
     2389    /** 
     2390     * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
     2391     *  
     2392     */ 
     2393    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSRgbColor.class) 
     2394    public JAXBElement<CTAngle> createCTSRgbColorHueOff(CTAngle value) { 
     2395        return new JAXBElement<CTAngle>(_CTSystemColorHueOff_QNAME, CTAngle.class, CTSRgbColor.class, value); 
     2396    } 
     2397 
     2398    /** 
     2399     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2400     *  
     2401     */ 
     2402    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSRgbColor.class) 
     2403    public JAXBElement<CTPercentage> createCTSRgbColorBlueMod(CTPercentage value) { 
     2404        return new JAXBElement<CTPercentage>(_CTSystemColorBlueMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2405    } 
     2406 
     2407    /** 
     2408     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2409     *  
     2410     */ 
     2411    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSRgbColor.class) 
     2412    public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorShade(CTPositiveFixedPercentage value) { 
     2413        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorShade_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value); 
     2414    } 
     2415 
     2416    /** 
     2417     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2418     *  
     2419     */ 
     2420    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSRgbColor.class) 
     2421    public JAXBElement<CTPercentage> createCTSRgbColorLumMod(CTPercentage value) { 
     2422        return new JAXBElement<CTPercentage>(_CTSystemColorLumMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2423    } 
     2424 
     2425    /** 
     2426     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
     2427     *  
     2428     */ 
     2429    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSRgbColor.class) 
     2430    public JAXBElement<CTInverseTransform> createCTSRgbColorInv(CTInverseTransform value) { 
     2431        return new JAXBElement<CTInverseTransform>(_CTSystemColorInv_QNAME, CTInverseTransform.class, CTSRgbColor.class, value); 
     2432    } 
     2433 
     2434    /** 
     2435     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2436     *  
     2437     */ 
     2438    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSRgbColor.class) 
     2439    public JAXBElement<CTPercentage> createCTSRgbColorLumOff(CTPercentage value) { 
     2440        return new JAXBElement<CTPercentage>(_CTSystemColorLumOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2441    } 
     2442 
     2443    /** 
     2444     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2445     *  
     2446     */ 
     2447    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSRgbColor.class) 
     2448    public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorTint(CTPositiveFixedPercentage value) { 
     2449        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorTint_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value); 
     2450    } 
     2451 
     2452    /** 
     2453     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2454     *  
     2455     */ 
     2456    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSRgbColor.class) 
     2457    public JAXBElement<CTPercentage> createCTSRgbColorGreen(CTPercentage value) { 
     2458        return new JAXBElement<CTPercentage>(_CTSystemColorGreen_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2459    } 
     2460 
     2461    /** 
     2462     * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
     2463     *  
     2464     */ 
     2465    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSRgbColor.class) 
     2466    public JAXBElement<CTComplementTransform> createCTSRgbColorComp(CTComplementTransform value) { 
     2467        return new JAXBElement<CTComplementTransform>(_CTSystemColorComp_QNAME, CTComplementTransform.class, CTSRgbColor.class, value); 
     2468    } 
     2469 
     2470    /** 
     2471     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2472     *  
     2473     */ 
     2474    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSRgbColor.class) 
     2475    public JAXBElement<CTPercentage> createCTSRgbColorBlueOff(CTPercentage value) { 
     2476        return new JAXBElement<CTPercentage>(_CTSystemColorBlueOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
     2477    } 
     2478 
     2479    /** 
     2480     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     2481     *  
     2482     */ 
     2483    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSRgbColor.class) 
     2484    public JAXBElement<CTPositivePercentage> createCTSRgbColorHueMod(CTPositivePercentage value) { 
     2485        return new JAXBElement<CTPositivePercentage>(_CTSystemColorHueMod_QNAME, CTPositivePercentage.class, CTSRgbColor.class, value); 
     2486    } 
     2487 
     2488    /** 
     2489     * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
     2490     *  
     2491     */ 
     2492    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSRgbColor.class) 
     2493    public JAXBElement<CTGrayscaleTransform> createCTSRgbColorGray(CTGrayscaleTransform value) { 
     2494        return new JAXBElement<CTGrayscaleTransform>(_CTSystemColorGray_QNAME, CTGrayscaleTransform.class, CTSRgbColor.class, value); 
     2495    } 
     2496 
     2497    /** 
     2498     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2499     *  
     2500     */ 
     2501    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTScRgbColor.class) 
     2502    public JAXBElement<CTPercentage> createCTScRgbColorLum(CTPercentage value) { 
     2503        return new JAXBElement<CTPercentage>(_CTSystemColorLum_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2504    } 
     2505 
     2506    /** 
     2507     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2508     *  
     2509     */ 
     2510    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTScRgbColor.class) 
     2511    public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorAlpha(CTPositiveFixedPercentage value) { 
     2512        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value); 
     2513    } 
     2514 
     2515    /** 
     2516     * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
     2517     *  
     2518     */ 
     2519    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTScRgbColor.class) 
     2520    public JAXBElement<CTGammaTransform> createCTScRgbColorGamma(CTGammaTransform value) { 
     2521        return new JAXBElement<CTGammaTransform>(_CTSystemColorGamma_QNAME, CTGammaTransform.class, CTScRgbColor.class, value); 
     2522    } 
     2523 
     2524    /** 
     2525     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
     2526     *  
     2527     */ 
     2528    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTScRgbColor.class) 
     2529    public JAXBElement<CTInverseGammaTransform> createCTScRgbColorInvGamma(CTInverseGammaTransform value) { 
     2530        return new JAXBElement<CTInverseGammaTransform>(_CTSystemColorInvGamma_QNAME, CTInverseGammaTransform.class, CTScRgbColor.class, value); 
     2531    } 
     2532 
     2533    /** 
     2534     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2535     *  
     2536     */ 
     2537    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTScRgbColor.class) 
     2538    public JAXBElement<CTPercentage> createCTScRgbColorRedOff(CTPercentage value) { 
     2539        return new JAXBElement<CTPercentage>(_CTSystemColorRedOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2540    } 
     2541 
     2542    /** 
     2543     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     2544     *  
     2545     */ 
     2546    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTScRgbColor.class) 
     2547    public JAXBElement<CTPositivePercentage> createCTScRgbColorAlphaMod(CTPositivePercentage value) { 
     2548        return new JAXBElement<CTPositivePercentage>(_CTSystemColorAlphaMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value); 
     2549    } 
     2550 
     2551    /** 
     2552     * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
     2553     *  
     2554     */ 
     2555    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTScRgbColor.class) 
     2556    public JAXBElement<CTFixedPercentage> createCTScRgbColorAlphaOff(CTFixedPercentage value) { 
     2557        return new JAXBElement<CTFixedPercentage>(_CTSystemColorAlphaOff_QNAME, CTFixedPercentage.class, CTScRgbColor.class, value); 
     2558    } 
     2559 
     2560    /** 
     2561     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2562     *  
     2563     */ 
     2564    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTScRgbColor.class) 
     2565    public JAXBElement<CTPercentage> createCTScRgbColorGreenOff(CTPercentage value) { 
     2566        return new JAXBElement<CTPercentage>(_CTSystemColorGreenOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2567    } 
     2568 
     2569    /** 
     2570     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2571     *  
     2572     */ 
     2573    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTScRgbColor.class) 
     2574    public JAXBElement<CTPercentage> createCTScRgbColorRedMod(CTPercentage value) { 
     2575        return new JAXBElement<CTPercentage>(_CTSystemColorRedMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2576    } 
     2577 
     2578    /** 
     2579     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
     2580     *  
     2581     */ 
     2582    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTScRgbColor.class) 
     2583    public JAXBElement<CTPositiveFixedAngle> createCTScRgbColorHue(CTPositiveFixedAngle value) { 
     2584        return new JAXBElement<CTPositiveFixedAngle>(_CTSystemColorHue_QNAME, CTPositiveFixedAngle.class, CTScRgbColor.class, value); 
     2585    } 
     2586 
     2587    /** 
     2588     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2589     *  
     2590     */ 
     2591    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTScRgbColor.class) 
     2592    public JAXBElement<CTPercentage> createCTScRgbColorSatOff(CTPercentage value) { 
     2593        return new JAXBElement<CTPercentage>(_CTSystemColorSatOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2594    } 
     2595 
     2596    /** 
     2597     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2598     *  
     2599     */ 
     2600    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTScRgbColor.class) 
     2601    public JAXBElement<CTPercentage> createCTScRgbColorGreenMod(CTPercentage value) { 
     2602        return new JAXBElement<CTPercentage>(_CTSystemColorGreenMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2603    } 
     2604 
     2605    /** 
     2606     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2607     *  
     2608     */ 
     2609    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTScRgbColor.class) 
     2610    public JAXBElement<CTPercentage> createCTScRgbColorBlue(CTPercentage value) { 
     2611        return new JAXBElement<CTPercentage>(_CTSystemColorBlue_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2612    } 
     2613 
     2614    /** 
     2615     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2616     *  
     2617     */ 
     2618    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTScRgbColor.class) 
     2619    public JAXBElement<CTPercentage> createCTScRgbColorSat(CTPercentage value) { 
     2620        return new JAXBElement<CTPercentage>(_CTSystemColorSat_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2621    } 
     2622 
     2623    /** 
     2624     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2625     *  
     2626     */ 
     2627    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTScRgbColor.class) 
     2628    public JAXBElement<CTPercentage> createCTScRgbColorRed(CTPercentage value) { 
     2629        return new JAXBElement<CTPercentage>(_CTSystemColorRed_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2630    } 
     2631 
     2632    /** 
     2633     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2634     *  
     2635     */ 
     2636    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTScRgbColor.class) 
     2637    public JAXBElement<CTPercentage> createCTScRgbColorSatMod(CTPercentage value) { 
     2638        return new JAXBElement<CTPercentage>(_CTSystemColorSatMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2639    } 
     2640 
     2641    /** 
     2642     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2643     *  
     2644     */ 
     2645    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTScRgbColor.class) 
     2646    public JAXBElement<CTPercentage> createCTScRgbColorBlueMod(CTPercentage value) { 
     2647        return new JAXBElement<CTPercentage>(_CTSystemColorBlueMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2648    } 
     2649 
     2650    /** 
     2651     * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
     2652     *  
     2653     */ 
     2654    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTScRgbColor.class) 
     2655    public JAXBElement<CTAngle> createCTScRgbColorHueOff(CTAngle value) { 
     2656        return new JAXBElement<CTAngle>(_CTSystemColorHueOff_QNAME, CTAngle.class, CTScRgbColor.class, value); 
     2657    } 
     2658 
     2659    /** 
     2660     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2661     *  
     2662     */ 
     2663    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTScRgbColor.class) 
     2664    public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorShade(CTPositiveFixedPercentage value) { 
     2665        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorShade_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value); 
     2666    } 
     2667 
     2668    /** 
     2669     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2670     *  
     2671     */ 
     2672    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTScRgbColor.class) 
     2673    public JAXBElement<CTPercentage> createCTScRgbColorLumMod(CTPercentage value) { 
     2674        return new JAXBElement<CTPercentage>(_CTSystemColorLumMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2675    } 
     2676 
     2677    /** 
     2678     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
     2679     *  
     2680     */ 
     2681    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTScRgbColor.class) 
     2682    public JAXBElement<CTInverseTransform> createCTScRgbColorInv(CTInverseTransform value) { 
     2683        return new JAXBElement<CTInverseTransform>(_CTSystemColorInv_QNAME, CTInverseTransform.class, CTScRgbColor.class, value); 
     2684    } 
     2685 
     2686    /** 
     2687     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2688     *  
     2689     */ 
     2690    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTScRgbColor.class) 
     2691    public JAXBElement<CTPercentage> createCTScRgbColorLumOff(CTPercentage value) { 
     2692        return new JAXBElement<CTPercentage>(_CTSystemColorLumOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2693    } 
     2694 
     2695    /** 
     2696     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2697     *  
     2698     */ 
     2699    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTScRgbColor.class) 
     2700    public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorTint(CTPositiveFixedPercentage value) { 
     2701        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorTint_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value); 
     2702    } 
     2703 
     2704    /** 
     2705     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2706     *  
     2707     */ 
     2708    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTScRgbColor.class) 
     2709    public JAXBElement<CTPercentage> createCTScRgbColorGreen(CTPercentage value) { 
     2710        return new JAXBElement<CTPercentage>(_CTSystemColorGreen_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2711    } 
     2712 
     2713    /** 
     2714     * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
     2715     *  
     2716     */ 
     2717    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTScRgbColor.class) 
     2718    public JAXBElement<CTComplementTransform> createCTScRgbColorComp(CTComplementTransform value) { 
     2719        return new JAXBElement<CTComplementTransform>(_CTSystemColorComp_QNAME, CTComplementTransform.class, CTScRgbColor.class, value); 
     2720    } 
     2721 
     2722    /** 
     2723     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2724     *  
     2725     */ 
     2726    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTScRgbColor.class) 
     2727    public JAXBElement<CTPercentage> createCTScRgbColorBlueOff(CTPercentage value) { 
     2728        return new JAXBElement<CTPercentage>(_CTSystemColorBlueOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
     2729    } 
     2730 
     2731    /** 
     2732     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     2733     *  
     2734     */ 
     2735    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTScRgbColor.class) 
     2736    public JAXBElement<CTPositivePercentage> createCTScRgbColorHueMod(CTPositivePercentage value) { 
     2737        return new JAXBElement<CTPositivePercentage>(_CTSystemColorHueMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value); 
     2738    } 
     2739 
     2740    /** 
     2741     * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
     2742     *  
     2743     */ 
     2744    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTScRgbColor.class) 
     2745    public JAXBElement<CTGrayscaleTransform> createCTScRgbColorGray(CTGrayscaleTransform value) { 
     2746        return new JAXBElement<CTGrayscaleTransform>(_CTSystemColorGray_QNAME, CTGrayscaleTransform.class, CTScRgbColor.class, value); 
     2747    } 
     2748 
     2749    /** 
     2750     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2751     *  
     2752     */ 
     2753    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSchemeColor.class) 
     2754    public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorAlpha(CTPositiveFixedPercentage value) { 
     2755        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value); 
     2756    } 
     2757 
     2758    /** 
     2759     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2760     *  
     2761     */ 
     2762    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSchemeColor.class) 
     2763    public JAXBElement<CTPercentage> createCTSchemeColorLum(CTPercentage value) { 
     2764        return new JAXBElement<CTPercentage>(_CTSystemColorLum_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2765    } 
     2766 
     2767    /** 
     2768     * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
     2769     *  
     2770     */ 
     2771    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSchemeColor.class) 
     2772    public JAXBElement<CTGammaTransform> createCTSchemeColorGamma(CTGammaTransform value) { 
     2773        return new JAXBElement<CTGammaTransform>(_CTSystemColorGamma_QNAME, CTGammaTransform.class, CTSchemeColor.class, value); 
     2774    } 
     2775 
     2776    /** 
     2777     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
     2778     *  
     2779     */ 
     2780    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSchemeColor.class) 
     2781    public JAXBElement<CTInverseGammaTransform> createCTSchemeColorInvGamma(CTInverseGammaTransform value) { 
     2782        return new JAXBElement<CTInverseGammaTransform>(_CTSystemColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSchemeColor.class, value); 
     2783    } 
     2784 
     2785    /** 
     2786     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2787     *  
     2788     */ 
     2789    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSchemeColor.class) 
     2790    public JAXBElement<CTPercentage> createCTSchemeColorRedOff(CTPercentage value) { 
     2791        return new JAXBElement<CTPercentage>(_CTSystemColorRedOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2792    } 
     2793 
     2794    /** 
     2795     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     2796     *  
     2797     */ 
     2798    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSchemeColor.class) 
     2799    public JAXBElement<CTPositivePercentage> createCTSchemeColorAlphaMod(CTPositivePercentage value) { 
     2800        return new JAXBElement<CTPositivePercentage>(_CTSystemColorAlphaMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value); 
     2801    } 
     2802 
     2803    /** 
     2804     * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
     2805     *  
     2806     */ 
     2807    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSchemeColor.class) 
     2808    public JAXBElement<CTFixedPercentage> createCTSchemeColorAlphaOff(CTFixedPercentage value) { 
     2809        return new JAXBElement<CTFixedPercentage>(_CTSystemColorAlphaOff_QNAME, CTFixedPercentage.class, CTSchemeColor.class, value); 
     2810    } 
     2811 
     2812    /** 
     2813     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2814     *  
     2815     */ 
     2816    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSchemeColor.class) 
     2817    public JAXBElement<CTPercentage> createCTSchemeColorGreenOff(CTPercentage value) { 
     2818        return new JAXBElement<CTPercentage>(_CTSystemColorGreenOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2819    } 
     2820 
     2821    /** 
     2822     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
     2823     *  
     2824     */ 
     2825    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSchemeColor.class) 
     2826    public JAXBElement<CTPositiveFixedAngle> createCTSchemeColorHue(CTPositiveFixedAngle value) { 
     2827        return new JAXBElement<CTPositiveFixedAngle>(_CTSystemColorHue_QNAME, CTPositiveFixedAngle.class, CTSchemeColor.class, value); 
     2828    } 
     2829 
     2830    /** 
     2831     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2832     *  
     2833     */ 
     2834    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSchemeColor.class) 
     2835    public JAXBElement<CTPercentage> createCTSchemeColorRedMod(CTPercentage value) { 
     2836        return new JAXBElement<CTPercentage>(_CTSystemColorRedMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2837    } 
     2838 
     2839    /** 
     2840     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2841     *  
     2842     */ 
     2843    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSchemeColor.class) 
     2844    public JAXBElement<CTPercentage> createCTSchemeColorSatOff(CTPercentage value) { 
     2845        return new JAXBElement<CTPercentage>(_CTSystemColorSatOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2846    } 
     2847 
     2848    /** 
     2849     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2850     *  
     2851     */ 
     2852    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSchemeColor.class) 
     2853    public JAXBElement<CTPercentage> createCTSchemeColorGreenMod(CTPercentage value) { 
     2854        return new JAXBElement<CTPercentage>(_CTSystemColorGreenMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2855    } 
     2856 
     2857    /** 
     2858     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2859     *  
     2860     */ 
     2861    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSchemeColor.class) 
     2862    public JAXBElement<CTPercentage> createCTSchemeColorSat(CTPercentage value) { 
     2863        return new JAXBElement<CTPercentage>(_CTSystemColorSat_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2864    } 
     2865 
     2866    /** 
     2867     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2868     *  
     2869     */ 
     2870    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSchemeColor.class) 
     2871    public JAXBElement<CTPercentage> createCTSchemeColorBlue(CTPercentage value) { 
     2872        return new JAXBElement<CTPercentage>(_CTSystemColorBlue_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2873    } 
     2874 
     2875    /** 
     2876     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2877     *  
     2878     */ 
     2879    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSchemeColor.class) 
     2880    public JAXBElement<CTPercentage> createCTSchemeColorRed(CTPercentage value) { 
     2881        return new JAXBElement<CTPercentage>(_CTSystemColorRed_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2882    } 
     2883 
     2884    /** 
     2885     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2886     *  
     2887     */ 
     2888    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSchemeColor.class) 
     2889    public JAXBElement<CTPercentage> createCTSchemeColorSatMod(CTPercentage value) { 
     2890        return new JAXBElement<CTPercentage>(_CTSystemColorSatMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2891    } 
     2892 
     2893    /** 
     2894     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2895     *  
     2896     */ 
     2897    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSchemeColor.class) 
     2898    public JAXBElement<CTPercentage> createCTSchemeColorBlueMod(CTPercentage value) { 
     2899        return new JAXBElement<CTPercentage>(_CTSystemColorBlueMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2900    } 
     2901 
     2902    /** 
     2903     * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
     2904     *  
     2905     */ 
     2906    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSchemeColor.class) 
     2907    public JAXBElement<CTAngle> createCTSchemeColorHueOff(CTAngle value) { 
     2908        return new JAXBElement<CTAngle>(_CTSystemColorHueOff_QNAME, CTAngle.class, CTSchemeColor.class, value); 
     2909    } 
     2910 
     2911    /** 
     2912     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2913     *  
     2914     */ 
     2915    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSchemeColor.class) 
     2916    public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorShade(CTPositiveFixedPercentage value) { 
     2917        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorShade_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value); 
     2918    } 
     2919 
     2920    /** 
     2921     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2922     *  
     2923     */ 
     2924    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSchemeColor.class) 
     2925    public JAXBElement<CTPercentage> createCTSchemeColorLumMod(CTPercentage value) { 
     2926        return new JAXBElement<CTPercentage>(_CTSystemColorLumMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2927    } 
     2928 
     2929    /** 
     2930     * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
     2931     *  
     2932     */ 
     2933    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSchemeColor.class) 
     2934    public JAXBElement<CTInverseTransform> createCTSchemeColorInv(CTInverseTransform value) { 
     2935        return new JAXBElement<CTInverseTransform>(_CTSystemColorInv_QNAME, CTInverseTransform.class, CTSchemeColor.class, value); 
     2936    } 
     2937 
     2938    /** 
     2939     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2940     *  
     2941     */ 
     2942    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSchemeColor.class) 
     2943    public JAXBElement<CTPercentage> createCTSchemeColorLumOff(CTPercentage value) { 
     2944        return new JAXBElement<CTPercentage>(_CTSystemColorLumOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2945    } 
     2946 
     2947    /** 
     2948     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
     2949     *  
     2950     */ 
     2951    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSchemeColor.class) 
     2952    public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorTint(CTPositiveFixedPercentage value) { 
     2953        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorTint_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value); 
     2954    } 
     2955 
     2956    /** 
     2957     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2958     *  
     2959     */ 
     2960    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSchemeColor.class) 
     2961    public JAXBElement<CTPercentage> createCTSchemeColorGreen(CTPercentage value) { 
     2962        return new JAXBElement<CTPercentage>(_CTSystemColorGreen_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2963    } 
     2964 
     2965    /** 
     2966     * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
     2967     *  
     2968     */ 
     2969    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSchemeColor.class) 
     2970    public JAXBElement<CTComplementTransform> createCTSchemeColorComp(CTComplementTransform value) { 
     2971        return new JAXBElement<CTComplementTransform>(_CTSystemColorComp_QNAME, CTComplementTransform.class, CTSchemeColor.class, value); 
     2972    } 
     2973 
     2974    /** 
     2975     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     2976     *  
     2977     */ 
     2978    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSchemeColor.class) 
     2979    public JAXBElement<CTPercentage> createCTSchemeColorBlueOff(CTPercentage value) { 
     2980        return new JAXBElement<CTPercentage>(_CTSystemColorBlueOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
     2981    } 
     2982 
     2983    /** 
     2984     * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
     2985     *  
     2986     */ 
     2987    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSchemeColor.class) 
     2988    public JAXBElement<CTPositivePercentage> createCTSchemeColorHueMod(CTPositivePercentage value) { 
     2989        return new JAXBElement<CTPositivePercentage>(_CTSystemColorHueMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value); 
     2990    } 
     2991 
     2992    /** 
     2993     * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
     2994     *  
     2995     */ 
     2996    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSchemeColor.class) 
     2997    public JAXBElement<CTGrayscaleTransform> createCTSchemeColorGray(CTGrayscaleTransform value) { 
     2998        return new JAXBElement<CTGrayscaleTransform>(_CTSystemColorGray_QNAME, CTGrayscaleTransform.class, CTSchemeColor.class, value); 
    19912999    } 
    19923000 
     
    19973005    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTHslColor.class) 
    19983006    public JAXBElement<CTPercentage> createCTHslColorLum(CTPercentage value) { 
    1999         return new JAXBElement<CTPercentage>(_CTPresetColorLum_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3007        return new JAXBElement<CTPercentage>(_CTSystemColorLum_QNAME, CTPercentage.class, CTHslColor.class, value); 
    20003008    } 
    20013009 
     
    20063014    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTHslColor.class) 
    20073015    public JAXBElement<CTPositiveFixedPercentage> createCTHslColorAlpha(CTPositiveFixedPercentage value) { 
    2008         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value); 
     3016        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value); 
    20093017    } 
    20103018 
     
    20153023    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTHslColor.class) 
    20163024    public JAXBElement<CTGammaTransform> createCTHslColorGamma(CTGammaTransform value) { 
    2017         return new JAXBElement<CTGammaTransform>(_CTPresetColorGamma_QNAME, CTGammaTransform.class, CTHslColor.class, value); 
     3025        return new JAXBElement<CTGammaTransform>(_CTSystemColorGamma_QNAME, CTGammaTransform.class, CTHslColor.class, value); 
    20183026    } 
    20193027 
     
    20243032    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTHslColor.class) 
    20253033    public JAXBElement<CTInverseGammaTransform> createCTHslColorInvGamma(CTInverseGammaTransform value) { 
    2026         return new JAXBElement<CTInverseGammaTransform>(_CTPresetColorInvGamma_QNAME, CTInverseGammaTransform.class, CTHslColor.class, value); 
     3034        return new JAXBElement<CTInverseGammaTransform>(_CTSystemColorInvGamma_QNAME, CTInverseGammaTransform.class, CTHslColor.class, value); 
     3035    } 
     3036 
     3037    /** 
     3038     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     3039     *  
     3040     */ 
     3041    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTHslColor.class) 
     3042    public JAXBElement<CTPercentage> createCTHslColorRedOff(CTPercentage value) { 
     3043        return new JAXBElement<CTPercentage>(_CTSystemColorRedOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
    20273044    } 
    20283045 
     
    20333050    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTHslColor.class) 
    20343051    public JAXBElement<CTPositivePercentage> createCTHslColorAlphaMod(CTPositivePercentage value) { 
    2035         return new JAXBElement<CTPositivePercentage>(_CTPresetColorAlphaMod_QNAME, CTPositivePercentage.class, CTHslColor.class, value); 
    2036     } 
    2037  
    2038     /** 
    2039      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2040      *  
    2041      */ 
    2042     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTHslColor.class) 
    2043     public JAXBElement<CTPercentage> createCTHslColorRedOff(CTPercentage value) { 
    2044         return new JAXBElement<CTPercentage>(_CTPresetColorRedOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3052        return new JAXBElement<CTPositivePercentage>(_CTSystemColorAlphaMod_QNAME, CTPositivePercentage.class, CTHslColor.class, value); 
    20453053    } 
    20463054 
     
    20513059    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTHslColor.class) 
    20523060    public JAXBElement<CTFixedPercentage> createCTHslColorAlphaOff(CTFixedPercentage value) { 
    2053         return new JAXBElement<CTFixedPercentage>(_CTPresetColorAlphaOff_QNAME, CTFixedPercentage.class, CTHslColor.class, value); 
     3061        return new JAXBElement<CTFixedPercentage>(_CTSystemColorAlphaOff_QNAME, CTFixedPercentage.class, CTHslColor.class, value); 
    20543062    } 
    20553063 
     
    20603068    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTHslColor.class) 
    20613069    public JAXBElement<CTPercentage> createCTHslColorGreenOff(CTPercentage value) { 
    2062         return new JAXBElement<CTPercentage>(_CTPresetColorGreenOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3070        return new JAXBElement<CTPercentage>(_CTSystemColorGreenOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3071    } 
     3072 
     3073    /** 
     3074     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     3075     *  
     3076     */ 
     3077    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTHslColor.class) 
     3078    public JAXBElement<CTPercentage> createCTHslColorRedMod(CTPercentage value) { 
     3079        return new JAXBElement<CTPercentage>(_CTSystemColorRedMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
    20633080    } 
    20643081 
     
    20693086    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTHslColor.class) 
    20703087    public JAXBElement<CTPositiveFixedAngle> createCTHslColorHue(CTPositiveFixedAngle value) { 
    2071         return new JAXBElement<CTPositiveFixedAngle>(_CTPresetColorHue_QNAME, CTPositiveFixedAngle.class, CTHslColor.class, value); 
    2072     } 
    2073  
    2074     /** 
    2075      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2076      *  
    2077      */ 
    2078     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTHslColor.class) 
    2079     public JAXBElement<CTPercentage> createCTHslColorRedMod(CTPercentage value) { 
    2080         return new JAXBElement<CTPercentage>(_CTPresetColorRedMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3088        return new JAXBElement<CTPositiveFixedAngle>(_CTSystemColorHue_QNAME, CTPositiveFixedAngle.class, CTHslColor.class, value); 
    20813089    } 
    20823090 
     
    20873095    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTHslColor.class) 
    20883096    public JAXBElement<CTPercentage> createCTHslColorSatOff(CTPercentage value) { 
    2089         return new JAXBElement<CTPercentage>(_CTPresetColorSatOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3097        return new JAXBElement<CTPercentage>(_CTSystemColorSatOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
    20903098    } 
    20913099 
     
    20963104    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTHslColor.class) 
    20973105    public JAXBElement<CTPercentage> createCTHslColorGreenMod(CTPercentage value) { 
    2098         return new JAXBElement<CTPercentage>(_CTPresetColorGreenMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3106        return new JAXBElement<CTPercentage>(_CTSystemColorGreenMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3107    } 
     3108 
     3109    /** 
     3110     * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
     3111     *  
     3112     */ 
     3113    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTHslColor.class) 
     3114    public JAXBElement<CTPercentage> createCTHslColorBlue(CTPercentage value) { 
     3115        return new JAXBElement<CTPercentage>(_CTSystemColorBlue_QNAME, CTPercentage.class, CTHslColor.class, value); 
    20993116    } 
    21003117 
     
    21053122    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTHslColor.class) 
    21063123    public JAXBElement<CTPercentage> createCTHslColorSat(CTPercentage value) { 
    2107         return new JAXBElement<CTPercentage>(_CTPresetColorSat_QNAME, CTPercentage.class, CTHslColor.class, value); 
    2108     } 
    2109  
    2110     /** 
    2111      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2112      *  
    2113      */ 
    2114     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTHslColor.class) 
    2115     public JAXBElement<CTPercentage> createCTHslColorBlue(CTPercentage value) { 
    2116         return new JAXBElement<CTPercentage>(_CTPresetColorBlue_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3124        return new JAXBElement<CTPercentage>(_CTSystemColorSat_QNAME, CTPercentage.class, CTHslColor.class, value); 
    21173125    } 
    21183126 
     
    21233131    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTHslColor.class) 
    21243132    public JAXBElement<CTPercentage> createCTHslColorRed(CTPercentage value) { 
    2125         return new JAXBElement<CTPercentage>(_CTPresetColorRed_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3133        return new JAXBElement<CTPercentage>(_CTSystemColorRed_QNAME, CTPercentage.class, CTHslColor.class, value); 
    21263134    } 
    21273135 
     
    21323140    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTHslColor.class) 
    21333141    public JAXBElement<CTPercentage> createCTHslColorSatMod(CTPercentage value) { 
    2134         return new JAXBElement<CTPercentage>(_CTPresetColorSatMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3142        return new JAXBElement<CTPercentage>(_CTSystemColorSatMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
    21353143    } 
    21363144 
     
    21413149    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTHslColor.class) 
    21423150    public JAXBElement<CTAngle> createCTHslColorHueOff(CTAngle value) { 
    2143         return new JAXBElement<CTAngle>(_CTPresetColorHueOff_QNAME, CTAngle.class, CTHslColor.class, value); 
     3151        return new JAXBElement<CTAngle>(_CTSystemColorHueOff_QNAME, CTAngle.class, CTHslColor.class, value); 
    21443152    } 
    21453153 
     
    21503158    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTHslColor.class) 
    21513159    public JAXBElement<CTPercentage> createCTHslColorBlueMod(CTPercentage value) { 
    2152         return new JAXBElement<CTPercentage>(_CTPresetColorBlueMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3160        return new JAXBElement<CTPercentage>(_CTSystemColorBlueMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
    21533161    } 
    21543162 
     
    21593167    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTHslColor.class) 
    21603168    public JAXBElement<CTPositiveFixedPercentage> createCTHslColorShade(CTPositiveFixedPercentage value) { 
    2161         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorShade_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value); 
     3169        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorShade_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value); 
    21623170    } 
    21633171 
     
    21683176    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTHslColor.class) 
    21693177    public JAXBElement<CTPercentage> createCTHslColorLumMod(CTPercentage value) { 
    2170         return new JAXBElement<CTPercentage>(_CTPresetColorLumMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3178        return new JAXBElement<CTPercentage>(_CTSystemColorLumMod_QNAME, CTPercentage.class, CTHslColor.class, value); 
    21713179    } 
    21723180 
     
    21773185    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTHslColor.class) 
    21783186    public JAXBElement<CTInverseTransform> createCTHslColorInv(CTInverseTransform value) { 
    2179         return new JAXBElement<CTInverseTransform>(_CTPresetColorInv_QNAME, CTInverseTransform.class, CTHslColor.class, value); 
     3187        return new JAXBElement<CTInverseTransform>(_CTSystemColorInv_QNAME, CTInverseTransform.class, CTHslColor.class, value); 
    21803188    } 
    21813189 
     
    21863194    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTHslColor.class) 
    21873195    public JAXBElement<CTPercentage> createCTHslColorLumOff(CTPercentage value) { 
    2188         return new JAXBElement<CTPercentage>(_CTPresetColorLumOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3196        return new JAXBElement<CTPercentage>(_CTSystemColorLumOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
    21893197    } 
    21903198 
     
    21953203    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTHslColor.class) 
    21963204    public JAXBElement<CTPositiveFixedPercentage> createCTHslColorTint(CTPositiveFixedPercentage value) { 
    2197         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorTint_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value); 
     3205        return new JAXBElement<CTPositiveFixedPercentage>(_CTSystemColorTint_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value); 
    21983206    } 
    21993207 
     
    22043212    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTHslColor.class) 
    22053213    public JAXBElement<CTPercentage> createCTHslColorGreen(CTPercentage value) { 
    2206         return new JAXBElement<CTPercentage>(_CTPresetColorGreen_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3214        return new JAXBElement<CTPercentage>(_CTSystemColorGreen_QNAME, CTPercentage.class, CTHslColor.class, value); 
    22073215    } 
    22083216 
     
    22133221    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTHslColor.class) 
    22143222    public JAXBElement<CTComplementTransform> createCTHslColorComp(CTComplementTransform value) { 
    2215         return new JAXBElement<CTComplementTransform>(_CTPresetColorComp_QNAME, CTComplementTransform.class, CTHslColor.class, value); 
     3223        return new JAXBElement<CTComplementTransform>(_CTSystemColorComp_QNAME, CTComplementTransform.class, CTHslColor.class, value); 
    22163224    } 
    22173225 
     
    22223230    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTHslColor.class) 
    22233231    public JAXBElement<CTPercentage> createCTHslColorBlueOff(CTPercentage value) { 
    2224         return new JAXBElement<CTPercentage>(_CTPresetColorBlueOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
     3232        return new JAXBElement<CTPercentage>(_CTSystemColorBlueOff_QNAME, CTPercentage.class, CTHslColor.class, value); 
    22253233    } 
    22263234 
     
    22313239    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTHslColor.class) 
    22323240    public JAXBElement<CTPositivePercentage> createCTHslColorHueMod(CTPositivePercentage value) { 
    2233         return new JAXBElement<CTPositivePercentage>(_CTPresetColorHueMod_QNAME, CTPositivePercentage.class, CTHslColor.class, value); 
     3241        return new JAXBElement<CTPositivePercentage>(_CTSystemColorHueMod_QNAME, CTPositivePercentage.class, CTHslColor.class, value); 
    22343242    } 
    22353243 
     
    22403248    @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTHslColor.class) 
    22413249    public JAXBElement<CTGrayscaleTransform> createCTHslColorGray(CTGrayscaleTransform value) { 
    2242         return new JAXBElement<CTGrayscaleTransform>(_CTPresetColorGray_QNAME, CTGrayscaleTransform.class, CTHslColor.class, value); 
    2243     } 
    2244  
    2245     /** 
    2246      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2247      *  
    2248      */ 
    2249     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSystemColor.class) 
    2250     public JAXBElement<CTPercentage> createCTSystemColorLum(CTPercentage value) { 
    2251         return new JAXBElement<CTPercentage>(_CTPresetColorLum_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2252     } 
    2253  
    2254     /** 
    2255      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2256      *  
    2257      */ 
    2258     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSystemColor.class) 
    2259     public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorAlpha(CTPositiveFixedPercentage value) { 
    2260         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value); 
    2261     } 
    2262  
    2263     /** 
    2264      * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
    2265      *  
    2266      */ 
    2267     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSystemColor.class) 
    2268     public JAXBElement<CTGammaTransform> createCTSystemColorGamma(CTGammaTransform value) { 
    2269         return new JAXBElement<CTGammaTransform>(_CTPresetColorGamma_QNAME, CTGammaTransform.class, CTSystemColor.class, value); 
    2270     } 
    2271  
    2272     /** 
    2273      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
    2274      *  
    2275      */ 
    2276     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSystemColor.class) 
    2277     public JAXBElement<CTInverseGammaTransform> createCTSystemColorInvGamma(CTInverseGammaTransform value) { 
    2278         return new JAXBElement<CTInverseGammaTransform>(_CTPresetColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSystemColor.class, value); 
    2279     } 
    2280  
    2281     /** 
    2282      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2283      *  
    2284      */ 
    2285     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSystemColor.class) 
    2286     public JAXBElement<CTPercentage> createCTSystemColorRedOff(CTPercentage value) { 
    2287         return new JAXBElement<CTPercentage>(_CTPresetColorRedOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2288     } 
    2289  
    2290     /** 
    2291      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    2292      *  
    2293      */ 
    2294     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSystemColor.class) 
    2295     public JAXBElement<CTPositivePercentage> createCTSystemColorAlphaMod(CTPositivePercentage value) { 
    2296         return new JAXBElement<CTPositivePercentage>(_CTPresetColorAlphaMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value); 
    2297     } 
    2298  
    2299     /** 
    2300      * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
    2301      *  
    2302      */ 
    2303     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSystemColor.class) 
    2304     public JAXBElement<CTFixedPercentage> createCTSystemColorAlphaOff(CTFixedPercentage value) { 
    2305         return new JAXBElement<CTFixedPercentage>(_CTPresetColorAlphaOff_QNAME, CTFixedPercentage.class, CTSystemColor.class, value); 
    2306     } 
    2307  
    2308     /** 
    2309      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2310      *  
    2311      */ 
    2312     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSystemColor.class) 
    2313     public JAXBElement<CTPercentage> createCTSystemColorGreenOff(CTPercentage value) { 
    2314         return new JAXBElement<CTPercentage>(_CTPresetColorGreenOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2315     } 
    2316  
    2317     /** 
    2318      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
    2319      *  
    2320      */ 
    2321     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSystemColor.class) 
    2322     public JAXBElement<CTPositiveFixedAngle> createCTSystemColorHue(CTPositiveFixedAngle value) { 
    2323         return new JAXBElement<CTPositiveFixedAngle>(_CTPresetColorHue_QNAME, CTPositiveFixedAngle.class, CTSystemColor.class, value); 
    2324     } 
    2325  
    2326     /** 
    2327      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2328      *  
    2329      */ 
    2330     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSystemColor.class) 
    2331     public JAXBElement<CTPercentage> createCTSystemColorRedMod(CTPercentage value) { 
    2332         return new JAXBElement<CTPercentage>(_CTPresetColorRedMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2333     } 
    2334  
    2335     /** 
    2336      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2337      *  
    2338      */ 
    2339     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSystemColor.class) 
    2340     public JAXBElement<CTPercentage> createCTSystemColorSatOff(CTPercentage value) { 
    2341         return new JAXBElement<CTPercentage>(_CTPresetColorSatOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2342     } 
    2343  
    2344     /** 
    2345      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2346      *  
    2347      */ 
    2348     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSystemColor.class) 
    2349     public JAXBElement<CTPercentage> createCTSystemColorGreenMod(CTPercentage value) { 
    2350         return new JAXBElement<CTPercentage>(_CTPresetColorGreenMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2351     } 
    2352  
    2353     /** 
    2354      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2355      *  
    2356      */ 
    2357     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSystemColor.class) 
    2358     public JAXBElement<CTPercentage> createCTSystemColorSat(CTPercentage value) { 
    2359         return new JAXBElement<CTPercentage>(_CTPresetColorSat_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2360     } 
    2361  
    2362     /** 
    2363      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2364      *  
    2365      */ 
    2366     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSystemColor.class) 
    2367     public JAXBElement<CTPercentage> createCTSystemColorBlue(CTPercentage value) { 
    2368         return new JAXBElement<CTPercentage>(_CTPresetColorBlue_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2369     } 
    2370  
    2371     /** 
    2372      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2373      *  
    2374      */ 
    2375     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSystemColor.class) 
    2376     public JAXBElement<CTPercentage> createCTSystemColorRed(CTPercentage value) { 
    2377         return new JAXBElement<CTPercentage>(_CTPresetColorRed_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2378     } 
    2379  
    2380     /** 
    2381      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2382      *  
    2383      */ 
    2384     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSystemColor.class) 
    2385     public JAXBElement<CTPercentage> createCTSystemColorSatMod(CTPercentage value) { 
    2386         return new JAXBElement<CTPercentage>(_CTPresetColorSatMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2387     } 
    2388  
    2389     /** 
    2390      * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
    2391      *  
    2392      */ 
    2393     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSystemColor.class) 
    2394     public JAXBElement<CTAngle> createCTSystemColorHueOff(CTAngle value) { 
    2395         return new JAXBElement<CTAngle>(_CTPresetColorHueOff_QNAME, CTAngle.class, CTSystemColor.class, value); 
    2396     } 
    2397  
    2398     /** 
    2399      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2400      *  
    2401      */ 
    2402     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSystemColor.class) 
    2403     public JAXBElement<CTPercentage> createCTSystemColorBlueMod(CTPercentage value) { 
    2404         return new JAXBElement<CTPercentage>(_CTPresetColorBlueMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2405     } 
    2406  
    2407     /** 
    2408      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2409      *  
    2410      */ 
    2411     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSystemColor.class) 
    2412     public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorShade(CTPositiveFixedPercentage value) { 
    2413         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorShade_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value); 
    2414     } 
    2415  
    2416     /** 
    2417      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2418      *  
    2419      */ 
    2420     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSystemColor.class) 
    2421     public JAXBElement<CTPercentage> createCTSystemColorLumMod(CTPercentage value) { 
    2422         return new JAXBElement<CTPercentage>(_CTPresetColorLumMod_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2423     } 
    2424  
    2425     /** 
    2426      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
    2427      *  
    2428      */ 
    2429     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSystemColor.class) 
    2430     public JAXBElement<CTInverseTransform> createCTSystemColorInv(CTInverseTransform value) { 
    2431         return new JAXBElement<CTInverseTransform>(_CTPresetColorInv_QNAME, CTInverseTransform.class, CTSystemColor.class, value); 
    2432     } 
    2433  
    2434     /** 
    2435      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2436      *  
    2437      */ 
    2438     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSystemColor.class) 
    2439     public JAXBElement<CTPercentage> createCTSystemColorLumOff(CTPercentage value) { 
    2440         return new JAXBElement<CTPercentage>(_CTPresetColorLumOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2441     } 
    2442  
    2443     /** 
    2444      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2445      *  
    2446      */ 
    2447     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSystemColor.class) 
    2448     public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorTint(CTPositiveFixedPercentage value) { 
    2449         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorTint_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value); 
    2450     } 
    2451  
    2452     /** 
    2453      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2454      *  
    2455      */ 
    2456     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSystemColor.class) 
    2457     public JAXBElement<CTPercentage> createCTSystemColorGreen(CTPercentage value) { 
    2458         return new JAXBElement<CTPercentage>(_CTPresetColorGreen_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2459     } 
    2460  
    2461     /** 
    2462      * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
    2463      *  
    2464      */ 
    2465     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSystemColor.class) 
    2466     public JAXBElement<CTComplementTransform> createCTSystemColorComp(CTComplementTransform value) { 
    2467         return new JAXBElement<CTComplementTransform>(_CTPresetColorComp_QNAME, CTComplementTransform.class, CTSystemColor.class, value); 
    2468     } 
    2469  
    2470     /** 
    2471      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2472      *  
    2473      */ 
    2474     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSystemColor.class) 
    2475     public JAXBElement<CTPercentage> createCTSystemColorBlueOff(CTPercentage value) { 
    2476         return new JAXBElement<CTPercentage>(_CTPresetColorBlueOff_QNAME, CTPercentage.class, CTSystemColor.class, value); 
    2477     } 
    2478  
    2479     /** 
    2480      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    2481      *  
    2482      */ 
    2483     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSystemColor.class) 
    2484     public JAXBElement<CTPositivePercentage> createCTSystemColorHueMod(CTPositivePercentage value) { 
    2485         return new JAXBElement<CTPositivePercentage>(_CTPresetColorHueMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value); 
    2486     } 
    2487  
    2488     /** 
    2489      * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
    2490      *  
    2491      */ 
    2492     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSystemColor.class) 
    2493     public JAXBElement<CTGrayscaleTransform> createCTSystemColorGray(CTGrayscaleTransform value) { 
    2494         return new JAXBElement<CTGrayscaleTransform>(_CTPresetColorGray_QNAME, CTGrayscaleTransform.class, CTSystemColor.class, value); 
    2495     } 
    2496  
    2497     /** 
    2498      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2499      *  
    2500      */ 
    2501     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSchemeColor.class) 
    2502     public JAXBElement<CTPercentage> createCTSchemeColorLum(CTPercentage value) { 
    2503         return new JAXBElement<CTPercentage>(_CTPresetColorLum_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2504     } 
    2505  
    2506     /** 
    2507      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2508      *  
    2509      */ 
    2510     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSchemeColor.class) 
    2511     public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorAlpha(CTPositiveFixedPercentage value) { 
    2512         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value); 
    2513     } 
    2514  
    2515     /** 
    2516      * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
    2517      *  
    2518      */ 
    2519     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSchemeColor.class) 
    2520     public JAXBElement<CTGammaTransform> createCTSchemeColorGamma(CTGammaTransform value) { 
    2521         return new JAXBElement<CTGammaTransform>(_CTPresetColorGamma_QNAME, CTGammaTransform.class, CTSchemeColor.class, value); 
    2522     } 
    2523  
    2524     /** 
    2525      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
    2526      *  
    2527      */ 
    2528     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSchemeColor.class) 
    2529     public JAXBElement<CTInverseGammaTransform> createCTSchemeColorInvGamma(CTInverseGammaTransform value) { 
    2530         return new JAXBElement<CTInverseGammaTransform>(_CTPresetColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSchemeColor.class, value); 
    2531     } 
    2532  
    2533     /** 
    2534      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    2535      *  
    2536      */ 
    2537     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSchemeColor.class) 
    2538     public JAXBElement<CTPositivePercentage> createCTSchemeColorAlphaMod(CTPositivePercentage value) { 
    2539         return new JAXBElement<CTPositivePercentage>(_CTPresetColorAlphaMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value); 
    2540     } 
    2541  
    2542     /** 
    2543      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2544      *  
    2545      */ 
    2546     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSchemeColor.class) 
    2547     public JAXBElement<CTPercentage> createCTSchemeColorRedOff(CTPercentage value) { 
    2548         return new JAXBElement<CTPercentage>(_CTPresetColorRedOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2549     } 
    2550  
    2551     /** 
    2552      * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
    2553      *  
    2554      */ 
    2555     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSchemeColor.class) 
    2556     public JAXBElement<CTFixedPercentage> createCTSchemeColorAlphaOff(CTFixedPercentage value) { 
    2557         return new JAXBElement<CTFixedPercentage>(_CTPresetColorAlphaOff_QNAME, CTFixedPercentage.class, CTSchemeColor.class, value); 
    2558     } 
    2559  
    2560     /** 
    2561      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2562      *  
    2563      */ 
    2564     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSchemeColor.class) 
    2565     public JAXBElement<CTPercentage> createCTSchemeColorGreenOff(CTPercentage value) { 
    2566         return new JAXBElement<CTPercentage>(_CTPresetColorGreenOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2567     } 
    2568  
    2569     /** 
    2570      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
    2571      *  
    2572      */ 
    2573     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSchemeColor.class) 
    2574     public JAXBElement<CTPositiveFixedAngle> createCTSchemeColorHue(CTPositiveFixedAngle value) { 
    2575         return new JAXBElement<CTPositiveFixedAngle>(_CTPresetColorHue_QNAME, CTPositiveFixedAngle.class, CTSchemeColor.class, value); 
    2576     } 
    2577  
    2578     /** 
    2579      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2580      *  
    2581      */ 
    2582     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSchemeColor.class) 
    2583     public JAXBElement<CTPercentage> createCTSchemeColorRedMod(CTPercentage value) { 
    2584         return new JAXBElement<CTPercentage>(_CTPresetColorRedMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2585     } 
    2586  
    2587     /** 
    2588      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2589      *  
    2590      */ 
    2591     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSchemeColor.class) 
    2592     public JAXBElement<CTPercentage> createCTSchemeColorSatOff(CTPercentage value) { 
    2593         return new JAXBElement<CTPercentage>(_CTPresetColorSatOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2594     } 
    2595  
    2596     /** 
    2597      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2598      *  
    2599      */ 
    2600     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSchemeColor.class) 
    2601     public JAXBElement<CTPercentage> createCTSchemeColorGreenMod(CTPercentage value) { 
    2602         return new JAXBElement<CTPercentage>(_CTPresetColorGreenMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2603     } 
    2604  
    2605     /** 
    2606      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2607      *  
    2608      */ 
    2609     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSchemeColor.class) 
    2610     public JAXBElement<CTPercentage> createCTSchemeColorBlue(CTPercentage value) { 
    2611         return new JAXBElement<CTPercentage>(_CTPresetColorBlue_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2612     } 
    2613  
    2614     /** 
    2615      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2616      *  
    2617      */ 
    2618     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSchemeColor.class) 
    2619     public JAXBElement<CTPercentage> createCTSchemeColorSat(CTPercentage value) { 
    2620         return new JAXBElement<CTPercentage>(_CTPresetColorSat_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2621     } 
    2622  
    2623     /** 
    2624      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2625      *  
    2626      */ 
    2627     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSchemeColor.class) 
    2628     public JAXBElement<CTPercentage> createCTSchemeColorRed(CTPercentage value) { 
    2629         return new JAXBElement<CTPercentage>(_CTPresetColorRed_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2630     } 
    2631  
    2632     /** 
    2633      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2634      *  
    2635      */ 
    2636     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSchemeColor.class) 
    2637     public JAXBElement<CTPercentage> createCTSchemeColorSatMod(CTPercentage value) { 
    2638         return new JAXBElement<CTPercentage>(_CTPresetColorSatMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2639     } 
    2640  
    2641     /** 
    2642      * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
    2643      *  
    2644      */ 
    2645     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSchemeColor.class) 
    2646     public JAXBElement<CTAngle> createCTSchemeColorHueOff(CTAngle value) { 
    2647         return new JAXBElement<CTAngle>(_CTPresetColorHueOff_QNAME, CTAngle.class, CTSchemeColor.class, value); 
    2648     } 
    2649  
    2650     /** 
    2651      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2652      *  
    2653      */ 
    2654     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSchemeColor.class) 
    2655     public JAXBElement<CTPercentage> createCTSchemeColorBlueMod(CTPercentage value) { 
    2656         return new JAXBElement<CTPercentage>(_CTPresetColorBlueMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2657     } 
    2658  
    2659     /** 
    2660      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2661      *  
    2662      */ 
    2663     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSchemeColor.class) 
    2664     public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorShade(CTPositiveFixedPercentage value) { 
    2665         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorShade_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value); 
    2666     } 
    2667  
    2668     /** 
    2669      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2670      *  
    2671      */ 
    2672     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSchemeColor.class) 
    2673     public JAXBElement<CTPercentage> createCTSchemeColorLumMod(CTPercentage value) { 
    2674         return new JAXBElement<CTPercentage>(_CTPresetColorLumMod_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2675     } 
    2676  
    2677     /** 
    2678      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
    2679      *  
    2680      */ 
    2681     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSchemeColor.class) 
    2682     public JAXBElement<CTInverseTransform> createCTSchemeColorInv(CTInverseTransform value) { 
    2683         return new JAXBElement<CTInverseTransform>(_CTPresetColorInv_QNAME, CTInverseTransform.class, CTSchemeColor.class, value); 
    2684     } 
    2685  
    2686     /** 
    2687      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2688      *  
    2689      */ 
    2690     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSchemeColor.class) 
    2691     public JAXBElement<CTPercentage> createCTSchemeColorLumOff(CTPercentage value) { 
    2692         return new JAXBElement<CTPercentage>(_CTPresetColorLumOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2693     } 
    2694  
    2695     /** 
    2696      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2697      *  
    2698      */ 
    2699     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSchemeColor.class) 
    2700     public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorTint(CTPositiveFixedPercentage value) { 
    2701         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorTint_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value); 
    2702     } 
    2703  
    2704     /** 
    2705      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2706      *  
    2707      */ 
    2708     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSchemeColor.class) 
    2709     public JAXBElement<CTPercentage> createCTSchemeColorGreen(CTPercentage value) { 
    2710         return new JAXBElement<CTPercentage>(_CTPresetColorGreen_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2711     } 
    2712  
    2713     /** 
    2714      * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
    2715      *  
    2716      */ 
    2717     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSchemeColor.class) 
    2718     public JAXBElement<CTComplementTransform> createCTSchemeColorComp(CTComplementTransform value) { 
    2719         return new JAXBElement<CTComplementTransform>(_CTPresetColorComp_QNAME, CTComplementTransform.class, CTSchemeColor.class, value); 
    2720     } 
    2721  
    2722     /** 
    2723      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2724      *  
    2725      */ 
    2726     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSchemeColor.class) 
    2727     public JAXBElement<CTPercentage> createCTSchemeColorBlueOff(CTPercentage value) { 
    2728         return new JAXBElement<CTPercentage>(_CTPresetColorBlueOff_QNAME, CTPercentage.class, CTSchemeColor.class, value); 
    2729     } 
    2730  
    2731     /** 
    2732      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    2733      *  
    2734      */ 
    2735     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSchemeColor.class) 
    2736     public JAXBElement<CTPositivePercentage> createCTSchemeColorHueMod(CTPositivePercentage value) { 
    2737         return new JAXBElement<CTPositivePercentage>(_CTPresetColorHueMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value); 
    2738     } 
    2739  
    2740     /** 
    2741      * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
    2742      *  
    2743      */ 
    2744     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSchemeColor.class) 
    2745     public JAXBElement<CTGrayscaleTransform> createCTSchemeColorGray(CTGrayscaleTransform value) { 
    2746         return new JAXBElement<CTGrayscaleTransform>(_CTPresetColorGray_QNAME, CTGrayscaleTransform.class, CTSchemeColor.class, value); 
    2747     } 
    2748  
    2749     /** 
    2750      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2751      *  
    2752      */ 
    2753     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTScRgbColor.class) 
    2754     public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorAlpha(CTPositiveFixedPercentage value) { 
    2755         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value); 
    2756     } 
    2757  
    2758     /** 
    2759      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2760      *  
    2761      */ 
    2762     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTScRgbColor.class) 
    2763     public JAXBElement<CTPercentage> createCTScRgbColorLum(CTPercentage value) { 
    2764         return new JAXBElement<CTPercentage>(_CTPresetColorLum_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2765     } 
    2766  
    2767     /** 
    2768      * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
    2769      *  
    2770      */ 
    2771     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTScRgbColor.class) 
    2772     public JAXBElement<CTGammaTransform> createCTScRgbColorGamma(CTGammaTransform value) { 
    2773         return new JAXBElement<CTGammaTransform>(_CTPresetColorGamma_QNAME, CTGammaTransform.class, CTScRgbColor.class, value); 
    2774     } 
    2775  
    2776     /** 
    2777      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
    2778      *  
    2779      */ 
    2780     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTScRgbColor.class) 
    2781     public JAXBElement<CTInverseGammaTransform> createCTScRgbColorInvGamma(CTInverseGammaTransform value) { 
    2782         return new JAXBElement<CTInverseGammaTransform>(_CTPresetColorInvGamma_QNAME, CTInverseGammaTransform.class, CTScRgbColor.class, value); 
    2783     } 
    2784  
    2785     /** 
    2786      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    2787      *  
    2788      */ 
    2789     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTScRgbColor.class) 
    2790     public JAXBElement<CTPositivePercentage> createCTScRgbColorAlphaMod(CTPositivePercentage value) { 
    2791         return new JAXBElement<CTPositivePercentage>(_CTPresetColorAlphaMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value); 
    2792     } 
    2793  
    2794     /** 
    2795      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2796      *  
    2797      */ 
    2798     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTScRgbColor.class) 
    2799     public JAXBElement<CTPercentage> createCTScRgbColorRedOff(CTPercentage value) { 
    2800         return new JAXBElement<CTPercentage>(_CTPresetColorRedOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2801     } 
    2802  
    2803     /** 
    2804      * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
    2805      *  
    2806      */ 
    2807     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTScRgbColor.class) 
    2808     public JAXBElement<CTFixedPercentage> createCTScRgbColorAlphaOff(CTFixedPercentage value) { 
    2809         return new JAXBElement<CTFixedPercentage>(_CTPresetColorAlphaOff_QNAME, CTFixedPercentage.class, CTScRgbColor.class, value); 
    2810     } 
    2811  
    2812     /** 
    2813      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2814      *  
    2815      */ 
    2816     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTScRgbColor.class) 
    2817     public JAXBElement<CTPercentage> createCTScRgbColorGreenOff(CTPercentage value) { 
    2818         return new JAXBElement<CTPercentage>(_CTPresetColorGreenOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2819     } 
    2820  
    2821     /** 
    2822      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
    2823      *  
    2824      */ 
    2825     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTScRgbColor.class) 
    2826     public JAXBElement<CTPositiveFixedAngle> createCTScRgbColorHue(CTPositiveFixedAngle value) { 
    2827         return new JAXBElement<CTPositiveFixedAngle>(_CTPresetColorHue_QNAME, CTPositiveFixedAngle.class, CTScRgbColor.class, value); 
    2828     } 
    2829  
    2830     /** 
    2831      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2832      *  
    2833      */ 
    2834     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTScRgbColor.class) 
    2835     public JAXBElement<CTPercentage> createCTScRgbColorRedMod(CTPercentage value) { 
    2836         return new JAXBElement<CTPercentage>(_CTPresetColorRedMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2837     } 
    2838  
    2839     /** 
    2840      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2841      *  
    2842      */ 
    2843     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTScRgbColor.class) 
    2844     public JAXBElement<CTPercentage> createCTScRgbColorSatOff(CTPercentage value) { 
    2845         return new JAXBElement<CTPercentage>(_CTPresetColorSatOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2846     } 
    2847  
    2848     /** 
    2849      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2850      *  
    2851      */ 
    2852     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTScRgbColor.class) 
    2853     public JAXBElement<CTPercentage> createCTScRgbColorGreenMod(CTPercentage value) { 
    2854         return new JAXBElement<CTPercentage>(_CTPresetColorGreenMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2855     } 
    2856  
    2857     /** 
    2858      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2859      *  
    2860      */ 
    2861     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTScRgbColor.class) 
    2862     public JAXBElement<CTPercentage> createCTScRgbColorBlue(CTPercentage value) { 
    2863         return new JAXBElement<CTPercentage>(_CTPresetColorBlue_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2864     } 
    2865  
    2866     /** 
    2867      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2868      *  
    2869      */ 
    2870     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTScRgbColor.class) 
    2871     public JAXBElement<CTPercentage> createCTScRgbColorSat(CTPercentage value) { 
    2872         return new JAXBElement<CTPercentage>(_CTPresetColorSat_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2873     } 
    2874  
    2875     /** 
    2876      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2877      *  
    2878      */ 
    2879     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTScRgbColor.class) 
    2880     public JAXBElement<CTPercentage> createCTScRgbColorRed(CTPercentage value) { 
    2881         return new JAXBElement<CTPercentage>(_CTPresetColorRed_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2882     } 
    2883  
    2884     /** 
    2885      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2886      *  
    2887      */ 
    2888     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTScRgbColor.class) 
    2889     public JAXBElement<CTPercentage> createCTScRgbColorSatMod(CTPercentage value) { 
    2890         return new JAXBElement<CTPercentage>(_CTPresetColorSatMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2891     } 
    2892  
    2893     /** 
    2894      * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
    2895      *  
    2896      */ 
    2897     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTScRgbColor.class) 
    2898     public JAXBElement<CTAngle> createCTScRgbColorHueOff(CTAngle value) { 
    2899         return new JAXBElement<CTAngle>(_CTPresetColorHueOff_QNAME, CTAngle.class, CTScRgbColor.class, value); 
    2900     } 
    2901  
    2902     /** 
    2903      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2904      *  
    2905      */ 
    2906     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTScRgbColor.class) 
    2907     public JAXBElement<CTPercentage> createCTScRgbColorBlueMod(CTPercentage value) { 
    2908         return new JAXBElement<CTPercentage>(_CTPresetColorBlueMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2909     } 
    2910  
    2911     /** 
    2912      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2913      *  
    2914      */ 
    2915     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTScRgbColor.class) 
    2916     public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorShade(CTPositiveFixedPercentage value) { 
    2917         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorShade_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value); 
    2918     } 
    2919  
    2920     /** 
    2921      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2922      *  
    2923      */ 
    2924     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTScRgbColor.class) 
    2925     public JAXBElement<CTPercentage> createCTScRgbColorLumMod(CTPercentage value) { 
    2926         return new JAXBElement<CTPercentage>(_CTPresetColorLumMod_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2927     } 
    2928  
    2929     /** 
    2930      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
    2931      *  
    2932      */ 
    2933     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTScRgbColor.class) 
    2934     public JAXBElement<CTInverseTransform> createCTScRgbColorInv(CTInverseTransform value) { 
    2935         return new JAXBElement<CTInverseTransform>(_CTPresetColorInv_QNAME, CTInverseTransform.class, CTScRgbColor.class, value); 
    2936     } 
    2937  
    2938     /** 
    2939      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2940      *  
    2941      */ 
    2942     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTScRgbColor.class) 
    2943     public JAXBElement<CTPercentage> createCTScRgbColorLumOff(CTPercentage value) { 
    2944         return new JAXBElement<CTPercentage>(_CTPresetColorLumOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2945     } 
    2946  
    2947     /** 
    2948      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    2949      *  
    2950      */ 
    2951     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTScRgbColor.class) 
    2952     public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorTint(CTPositiveFixedPercentage value) { 
    2953         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorTint_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value); 
    2954     } 
    2955  
    2956     /** 
    2957      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2958      *  
    2959      */ 
    2960     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTScRgbColor.class) 
    2961     public JAXBElement<CTPercentage> createCTScRgbColorGreen(CTPercentage value) { 
    2962         return new JAXBElement<CTPercentage>(_CTPresetColorGreen_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2963     } 
    2964  
    2965     /** 
    2966      * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
    2967      *  
    2968      */ 
    2969     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTScRgbColor.class) 
    2970     public JAXBElement<CTComplementTransform> createCTScRgbColorComp(CTComplementTransform value) { 
    2971         return new JAXBElement<CTComplementTransform>(_CTPresetColorComp_QNAME, CTComplementTransform.class, CTScRgbColor.class, value); 
    2972     } 
    2973  
    2974     /** 
    2975      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    2976      *  
    2977      */ 
    2978     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTScRgbColor.class) 
    2979     public JAXBElement<CTPercentage> createCTScRgbColorBlueOff(CTPercentage value) { 
    2980         return new JAXBElement<CTPercentage>(_CTPresetColorBlueOff_QNAME, CTPercentage.class, CTScRgbColor.class, value); 
    2981     } 
    2982  
    2983     /** 
    2984      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    2985      *  
    2986      */ 
    2987     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTScRgbColor.class) 
    2988     public JAXBElement<CTPositivePercentage> createCTScRgbColorHueMod(CTPositivePercentage value) { 
    2989         return new JAXBElement<CTPositivePercentage>(_CTPresetColorHueMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value); 
    2990     } 
    2991  
    2992     /** 
    2993      * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
    2994      *  
    2995      */ 
    2996     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTScRgbColor.class) 
    2997     public JAXBElement<CTGrayscaleTransform> createCTScRgbColorGray(CTGrayscaleTransform value) { 
    2998         return new JAXBElement<CTGrayscaleTransform>(_CTPresetColorGray_QNAME, CTGrayscaleTransform.class, CTScRgbColor.class, value); 
    2999     } 
    3000  
    3001     /** 
    3002      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3003      *  
    3004      */ 
    3005     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSRgbColor.class) 
    3006     public JAXBElement<CTPercentage> createCTSRgbColorLum(CTPercentage value) { 
    3007         return new JAXBElement<CTPercentage>(_CTPresetColorLum_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3008     } 
    3009  
    3010     /** 
    3011      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    3012      *  
    3013      */ 
    3014     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSRgbColor.class) 
    3015     public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorAlpha(CTPositiveFixedPercentage value) { 
    3016         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value); 
    3017     } 
    3018  
    3019     /** 
    3020      * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}} 
    3021      *  
    3022      */ 
    3023     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSRgbColor.class) 
    3024     public JAXBElement<CTGammaTransform> createCTSRgbColorGamma(CTGammaTransform value) { 
    3025         return new JAXBElement<CTGammaTransform>(_CTPresetColorGamma_QNAME, CTGammaTransform.class, CTSRgbColor.class, value); 
    3026     } 
    3027  
    3028     /** 
    3029      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}} 
    3030      *  
    3031      */ 
    3032     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSRgbColor.class) 
    3033     public JAXBElement<CTInverseGammaTransform> createCTSRgbColorInvGamma(CTInverseGammaTransform value) { 
    3034         return new JAXBElement<CTInverseGammaTransform>(_CTPresetColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSRgbColor.class, value); 
    3035     } 
    3036  
    3037     /** 
    3038      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3039      *  
    3040      */ 
    3041     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSRgbColor.class) 
    3042     public JAXBElement<CTPercentage> createCTSRgbColorRedOff(CTPercentage value) { 
    3043         return new JAXBElement<CTPercentage>(_CTPresetColorRedOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3044     } 
    3045  
    3046     /** 
    3047      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    3048      *  
    3049      */ 
    3050     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSRgbColor.class) 
    3051     public JAXBElement<CTPositivePercentage> createCTSRgbColorAlphaMod(CTPositivePercentage value) { 
    3052         return new JAXBElement<CTPositivePercentage>(_CTPresetColorAlphaMod_QNAME, CTPositivePercentage.class, CTSRgbColor.class, value); 
    3053     } 
    3054  
    3055     /** 
    3056      * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}} 
    3057      *  
    3058      */ 
    3059     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSRgbColor.class) 
    3060     public JAXBElement<CTFixedPercentage> createCTSRgbColorAlphaOff(CTFixedPercentage value) { 
    3061         return new JAXBElement<CTFixedPercentage>(_CTPresetColorAlphaOff_QNAME, CTFixedPercentage.class, CTSRgbColor.class, value); 
    3062     } 
    3063  
    3064     /** 
    3065      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3066      *  
    3067      */ 
    3068     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSRgbColor.class) 
    3069     public JAXBElement<CTPercentage> createCTSRgbColorGreenOff(CTPercentage value) { 
    3070         return new JAXBElement<CTPercentage>(_CTPresetColorGreenOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3071     } 
    3072  
    3073     /** 
    3074      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3075      *  
    3076      */ 
    3077     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSRgbColor.class) 
    3078     public JAXBElement<CTPercentage> createCTSRgbColorRedMod(CTPercentage value) { 
    3079         return new JAXBElement<CTPercentage>(_CTPresetColorRedMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3080     } 
    3081  
    3082     /** 
    3083      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}} 
    3084      *  
    3085      */ 
    3086     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSRgbColor.class) 
    3087     public JAXBElement<CTPositiveFixedAngle> createCTSRgbColorHue(CTPositiveFixedAngle value) { 
    3088         return new JAXBElement<CTPositiveFixedAngle>(_CTPresetColorHue_QNAME, CTPositiveFixedAngle.class, CTSRgbColor.class, value); 
    3089     } 
    3090  
    3091     /** 
    3092      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3093      *  
    3094      */ 
    3095     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSRgbColor.class) 
    3096     public JAXBElement<CTPercentage> createCTSRgbColorSatOff(CTPercentage value) { 
    3097         return new JAXBElement<CTPercentage>(_CTPresetColorSatOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3098     } 
    3099  
    3100     /** 
    3101      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3102      *  
    3103      */ 
    3104     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSRgbColor.class) 
    3105     public JAXBElement<CTPercentage> createCTSRgbColorGreenMod(CTPercentage value) { 
    3106         return new JAXBElement<CTPercentage>(_CTPresetColorGreenMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3107     } 
    3108  
    3109     /** 
    3110      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3111      *  
    3112      */ 
    3113     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSRgbColor.class) 
    3114     public JAXBElement<CTPercentage> createCTSRgbColorBlue(CTPercentage value) { 
    3115         return new JAXBElement<CTPercentage>(_CTPresetColorBlue_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3116     } 
    3117  
    3118     /** 
    3119      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3120      *  
    3121      */ 
    3122     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSRgbColor.class) 
    3123     public JAXBElement<CTPercentage> createCTSRgbColorSat(CTPercentage value) { 
    3124         return new JAXBElement<CTPercentage>(_CTPresetColorSat_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3125     } 
    3126  
    3127     /** 
    3128      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3129      *  
    3130      */ 
    3131     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSRgbColor.class) 
    3132     public JAXBElement<CTPercentage> createCTSRgbColorRed(CTPercentage value) { 
    3133         return new JAXBElement<CTPercentage>(_CTPresetColorRed_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3134     } 
    3135  
    3136     /** 
    3137      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3138      *  
    3139      */ 
    3140     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSRgbColor.class) 
    3141     public JAXBElement<CTPercentage> createCTSRgbColorSatMod(CTPercentage value) { 
    3142         return new JAXBElement<CTPercentage>(_CTPresetColorSatMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3143     } 
    3144  
    3145     /** 
    3146      * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}} 
    3147      *  
    3148      */ 
    3149     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSRgbColor.class) 
    3150     public JAXBElement<CTAngle> createCTSRgbColorHueOff(CTAngle value) { 
    3151         return new JAXBElement<CTAngle>(_CTPresetColorHueOff_QNAME, CTAngle.class, CTSRgbColor.class, value); 
    3152     } 
    3153  
    3154     /** 
    3155      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3156      *  
    3157      */ 
    3158     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSRgbColor.class) 
    3159     public JAXBElement<CTPercentage> createCTSRgbColorBlueMod(CTPercentage value) { 
    3160         return new JAXBElement<CTPercentage>(_CTPresetColorBlueMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3161     } 
    3162  
    3163     /** 
    3164      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    3165      *  
    3166      */ 
    3167     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSRgbColor.class) 
    3168     public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorShade(CTPositiveFixedPercentage value) { 
    3169         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorShade_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value); 
    3170     } 
    3171  
    3172     /** 
    3173      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3174      *  
    3175      */ 
    3176     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSRgbColor.class) 
    3177     public JAXBElement<CTPercentage> createCTSRgbColorLumMod(CTPercentage value) { 
    3178         return new JAXBElement<CTPercentage>(_CTPresetColorLumMod_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3179     } 
    3180  
    3181     /** 
    3182      * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}} 
    3183      *  
    3184      */ 
    3185     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSRgbColor.class) 
    3186     public JAXBElement<CTInverseTransform> createCTSRgbColorInv(CTInverseTransform value) { 
    3187         return new JAXBElement<CTInverseTransform>(_CTPresetColorInv_QNAME, CTInverseTransform.class, CTSRgbColor.class, value); 
    3188     } 
    3189  
    3190     /** 
    3191      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3192      *  
    3193      */ 
    3194     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSRgbColor.class) 
    3195     public JAXBElement<CTPercentage> createCTSRgbColorLumOff(CTPercentage value) { 
    3196         return new JAXBElement<CTPercentage>(_CTPresetColorLumOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3197     } 
    3198  
    3199     /** 
    3200      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}} 
    3201      *  
    3202      */ 
    3203     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSRgbColor.class) 
    3204     public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorTint(CTPositiveFixedPercentage value) { 
    3205         return new JAXBElement<CTPositiveFixedPercentage>(_CTPresetColorTint_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value); 
    3206     } 
    3207  
    3208     /** 
    3209      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3210      *  
    3211      */ 
    3212     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSRgbColor.class) 
    3213     public JAXBElement<CTPercentage> createCTSRgbColorGreen(CTPercentage value) { 
    3214         return new JAXBElement<CTPercentage>(_CTPresetColorGreen_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3215     } 
    3216  
    3217     /** 
    3218      * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}} 
    3219      *  
    3220      */ 
    3221     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSRgbColor.class) 
    3222     public JAXBElement<CTComplementTransform> createCTSRgbColorComp(CTComplementTransform value) { 
    3223         return new JAXBElement<CTComplementTransform>(_CTPresetColorComp_QNAME, CTComplementTransform.class, CTSRgbColor.class, value); 
    3224     } 
    3225  
    3226     /** 
    3227      * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}} 
    3228      *  
    3229      */ 
    3230     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSRgbColor.class) 
    3231     public JAXBElement<CTPercentage> createCTSRgbColorBlueOff(CTPercentage value) { 
    3232         return new JAXBElement<CTPercentage>(_CTPresetColorBlueOff_QNAME, CTPercentage.class, CTSRgbColor.class, value); 
    3233     } 
    3234  
    3235     /** 
    3236      * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}} 
    3237      *  
    3238      */ 
    3239     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSRgbColor.class) 
    3240     public JAXBElement<CTPositivePercentage> createCTSRgbColorHueMod(CTPositivePercentage value) { 
    3241         return new JAXBElement<CTPositivePercentage>(_CTPresetColorHueMod_QNAME, CTPositivePercentage.class, CTSRgbColor.class, value); 
    3242     } 
    3243  
    3244     /** 
    3245      * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}} 
    3246      *  
    3247      */ 
    3248     @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSRgbColor.class) 
    3249     public JAXBElement<CTGrayscaleTransform> createCTSRgbColorGray(CTGrayscaleTransform value) { 
    3250         return new JAXBElement<CTGrayscaleTransform>(_CTPresetColorGray_QNAME, CTGrayscaleTransform.class, CTSRgbColor.class, value); 
     3250        return new JAXBElement<CTGrayscaleTransform>(_CTSystemColorGray_QNAME, CTGrayscaleTransform.class, CTHslColor.class, value); 
    32513251    } 
    32523252 
  • trunk/docx4j/src/main/java/org/docx4j/wml/Body.java

    r546 r568  
    6767 
    6868    @XmlElementRefs({ 
     69        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     71        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
     72        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6975        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
    71         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    72         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
    74         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     77        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7579        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    78         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8080        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8181        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    87         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8983        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9184        @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9285        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    93         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9487        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    95         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    96         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     88        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     89        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     93        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     94        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
     95        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     96        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    9797    }) 
    9898    protected List<Object> egBlockLevelElts; 
     
    119119     * <p> 
    120120     * Objects of the following type(s) are allowed in the list 
     121     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     122     * {@link RunDel } 
     123     * {@link P } 
     124     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    121127     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    122      * {@link SdtBlock } 
    123      * {@link RunIns } 
    124      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    125      * {@link P } 
    126      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     128     * {@link ProofErr } 
     129     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    127131     * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     133     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     134     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     136     * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
     137     * {@link CommentRangeStart } 
     138     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     139     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    129140     * {@link CommentRangeEnd } 
    130141     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    133      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     142     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
     143     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    136144     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    137145     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    138      * {@link ProofErr } 
    139      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    140      * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    141      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    142      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    143      * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
    144      * {@link CommentRangeStart } 
    145      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    146      * {@link RunDel } 
    147      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    148      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     146     * {@link SdtBlock } 
     147     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     148     * {@link RunIns } 
    149149     *  
    150150     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTCaption.java

    r359 r568  
    4646 *       &lt;attribute name="heading" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" /> 
    4747 *       &lt;attribute name="noLabel" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> 
    48  *       &lt;attribute name="numFmt" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_NumberFormat" /> 
     48 *       &lt;attribute name="numFmt" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}NumberFormat" /> 
    4949 *       &lt;attribute name="sep" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_ChapterSep" /> 
    5050 *     &lt;/restriction> 
     
    7272    protected Boolean noLabel; 
    7373    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    74     protected STNumberFormat numFmt; 
     74    protected NumberFormat numFmt; 
    7575    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    7676    protected STChapterSep sep; 
     
    211211     * @return 
    212212     *     possible object is 
    213      *     {@link STNumberFormat } 
    214      *      
    215      */ 
    216     public STNumberFormat getNumFmt() { 
     213     *     {@link NumberFormat } 
     214     *      
     215     */ 
     216    public NumberFormat getNumFmt() { 
    217217        return numFmt; 
    218218    } 
     
    223223     * @param value 
    224224     *     allowed object is 
    225      *     {@link STNumberFormat } 
    226      *      
    227      */ 
    228     public void setNumFmt(STNumberFormat value) { 
     225     *     {@link NumberFormat } 
     226     *      
     227     */ 
     228    public void setNumFmt(NumberFormat value) { 
    229229        this.numFmt = value; 
    230230    } 
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlBlock.java

    r546 r568  
    6969    protected CTCustomXmlPr customXmlPr; 
    7070    @XmlElementRefs({ 
     71        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
     72        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     73        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     76        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7181        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
    73         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    74         @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
    75         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     84        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8186        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    82         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    89         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9087        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9188        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     93        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     94        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     95        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
    9296        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    94         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    95         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    96         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    97         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     97        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    9898    }) 
    9999    protected List<Object> egContentBlockContent; 
     
    147147     * <p> 
    148148     * Objects of the following type(s) are allowed in the list 
     149     * {@link P } 
     150     * {@link RunDel } 
     151     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     152     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     153     * {@link ProofErr } 
     154     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     155     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     156     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     157     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     158     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    149159     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    150      * {@link SdtBlock } 
    151      * {@link RunIns } 
    152      * {@link P } 
    153      * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    154      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    155      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    156      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    157      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    158      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    159      * {@link CommentRangeEnd } 
    160      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    161      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    162      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    163160     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    164      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    165      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    166      * {@link ProofErr } 
    167      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    168      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    169      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    170      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    171      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    172161     * {@link CommentRangeStart } 
    173162     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    174      * {@link RunDel } 
    175163     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     164     * {@link CommentRangeEnd } 
     165     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     166     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     167     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     168     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     169     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     170     * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
     171     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     172     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     173     * {@link SdtBlock } 
     174     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     175     * {@link RunIns } 
    176176     *  
    177177     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlCell.java

    r546 r568  
    6969    protected CTCustomXmlPr customXmlPr; 
    7070    @XmlElementRefs({ 
     71        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     72        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     78        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7180        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     85        @XmlElementRef(name = "tc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7286        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    74         @XmlElementRef(name = "tc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7787        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7989        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    8090        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     93        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     94        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8395        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    85         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    94         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    95         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    96         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     96        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    9797    }) 
    9898    protected List<Object> egContentCellContent; 
     
    146146     * <p> 
    147147     * Objects of the following type(s) are allowed in the list 
     148     * {@link RunDel } 
     149     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     150     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     151     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     152     * {@link JAXBElement }{@code <}{@link CTSdtCell }{@code >} 
     153     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     154     * {@link ProofErr } 
     155     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     156     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    148157     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    149      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    150      * {@link RunIns } 
     158     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     159     * {@link JAXBElement }{@code <}{@link CTCustomXmlCell }{@code >} 
     160     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     161     * {@link CommentRangeStart } 
    151162     * {@link JAXBElement }{@code <}{@link Tc }{@code >} 
    152      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    153      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    154      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    155      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     163     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     164     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     165     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    156166     * {@link CommentRangeEnd } 
    157167     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    158      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    159      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     168     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     169     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     170     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     171     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    160172     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    161      * {@link ProofErr } 
    162      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    163      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    164      * {@link JAXBElement }{@code <}{@link CTSdtCell }{@code >} 
    165      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    166      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    167      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    168      * {@link JAXBElement }{@code <}{@link CTCustomXmlCell }{@code >} 
    169      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    170      * {@link CommentRangeStart } 
    171      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    172      * {@link RunDel } 
    173      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     173     * {@link RunIns } 
    174174     *  
    175175     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlRow.java

    r546 r568  
    6969    protected CTCustomXmlPr customXmlPr; 
    7070    @XmlElementRefs({ 
    71         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
     71        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     74        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7275        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     80        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     83        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7385        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7586        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     88        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "tr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Tr.class), 
     91        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7692        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7793        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    82         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     94        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8395        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    87         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "tr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Tr.class), 
    89         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    94         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    95         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    96         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     96        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    9797    }) 
    9898    protected List<Object> egContentRowContent; 
     
    146146     * <p> 
    147147     * Objects of the following type(s) are allowed in the list 
    148      * {@link RunIns } 
    149148     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    150149     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     150     * {@link RunDel } 
     151     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     152     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     153     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     154     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    151155     * {@link JAXBElement }{@code <}{@link CTCustomXmlRow }{@code >} 
     156     * {@link ProofErr } 
     157     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     158     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     159     * {@link CommentRangeStart } 
     160     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     161     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     162     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     163     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     164     * {@link CommentRangeEnd } 
     165     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     166     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     167     * {@link Tr } 
     168     * {@link JAXBElement }{@code <}{@link CTSdtRow }{@code >} 
    152169     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    153170     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    154      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    155      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    156      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    157      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    158      * {@link CommentRangeEnd } 
    159171     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    160172     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    161      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    162      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    163      * {@link ProofErr } 
    164      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    165      * {@link Tr } 
    166      * {@link JAXBElement }{@code <}{@link CTSdtRow }{@code >} 
    167      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    168      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    169      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    170      * {@link CommentRangeStart } 
    171      * {@link RunDel } 
    172      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    173      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     173     * {@link RunIns } 
    174174     *  
    175175     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTCustomXmlRun.java

    r546 r568  
    6969    protected CTCustomXmlPr customXmlPr; 
    7070    @XmlElementRefs({ 
    71         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
     71        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     73        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "fldSimple", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
     76        @XmlElementRef(name = "smartTag", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     81        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     88        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7290        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     92        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     93        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     94        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     95        @XmlElementRef(name = "hyperlink", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     96        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7497        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "hyperlink", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    77         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "fldSimple", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    84         @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "smartTag", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    9298        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    94         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    95         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    96         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9799        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    98         @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
    99         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    100         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     100        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    101101    }) 
    102102    protected List<Object> paragraphContent; 
     
    150150     * <p> 
    151151     * Objects of the following type(s) are allowed in the list 
    152      * {@link RunIns } 
    153      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    154      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    155      * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
    156      * {@link JAXBElement }{@code <}{@link CTHyperlink }{@code >} 
    157      * {@link CommentRangeEnd } 
    158152     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     153     * {@link RunDel } 
     154     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    159155     * {@link JAXBElement }{@code <}{@link CTSimpleField }{@code >} 
    160      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    161      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    162      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    163      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    164      * {@link ProofErr } 
    165      * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
     156     * {@link R } 
    166157     * {@link JAXBElement }{@code <}{@link CTSmartTagRun }{@code >} 
    167      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    168158     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    169159     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     160     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     161     * {@link ProofErr } 
     162     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     163     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     164     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    170165     * {@link JAXBElement }{@code <}{@link SdtRun }{@code >} 
     166     * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
    171167     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    172168     * {@link CommentRangeStart } 
    173      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    174      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    175169     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    176      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    177      * {@link RunDel } 
     170     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     171     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     172     * {@link CommentRangeEnd } 
     173     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     174     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     175     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     176     * {@link JAXBElement }{@code <}{@link org.docx4j.wml.P.Hyperlink }{@code >} 
     177     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     178     * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
     179     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     180     * {@link RunIns } 
    178181     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    179      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    180      * {@link R } 
    181      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    182182     *  
    183183     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTDocPartPr.java

    r546 r568  
    8585 
    8686    @XmlElements({ 
     87        @XmlElement(name = "guid", type = CTGuid.class), 
     88        @XmlElement(name = "types", type = CTDocPartTypes.class), 
     89        @XmlElement(name = "category", type = CTDocPartCategory.class), 
     90        @XmlElement(name = "style", type = CTDocPartPr.Style.class), 
    8791        @XmlElement(name = "description", type = CTDocPartPr.Description.class), 
    88         @XmlElement(name = "style", type = CTDocPartPr.Style.class), 
    8992        @XmlElement(name = "behaviors", type = CTDocPartBehaviors.class), 
    90         @XmlElement(name = "guid", type = CTGuid.class), 
    91         @XmlElement(name = "category", type = CTDocPartCategory.class), 
    92         @XmlElement(name = "types", type = CTDocPartTypes.class), 
    9393        @XmlElement(name = "name", type = CTDocPartName.class) 
    9494    }) 
     
    115115     * <p> 
    116116     * Objects of the following type(s) are allowed in the list 
     117     * {@link CTGuid } 
     118     * {@link CTDocPartTypes } 
     119     * {@link CTDocPartCategory } 
     120     * {@link CTDocPartPr.Style } 
    117121     * {@link CTDocPartPr.Description } 
    118      * {@link CTDocPartPr.Style } 
    119122     * {@link CTDocPartBehaviors } 
    120      * {@link CTGuid } 
    121      * {@link CTDocPartCategory } 
    122      * {@link CTDocPartTypes } 
    123123     * {@link CTDocPartName } 
    124124     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTFFData.java

    r546 r568  
    7474 
    7575    @XmlElementRefs({ 
     76        @XmlElementRef(name = "ddList", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "textInput", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7678        @XmlElementRef(name = "enabled", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "entryMacro", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "helpText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "statusText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "exitMacro", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7783        @XmlElementRef(name = "name", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "calcOnExit", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "exitMacro", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "helpText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "ddList", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "statusText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "textInput", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "entryMacro", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "checkBox", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     84        @XmlElementRef(name = "checkBox", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "calcOnExit", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    8686    }) 
    8787    protected List<JAXBElement<?>> nameOrEnabledOrCalcOnExit; 
     
    107107     * <p> 
    108108     * Objects of the following type(s) are allowed in the list 
    109      * {@link JAXBElement }{@code <}{@link CTFFName }{@code >} 
    110      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     109     * {@link JAXBElement }{@code <}{@link CTFFTextInput }{@code >} 
     110     * {@link JAXBElement }{@code <}{@link CTFFDDList }{@code >} 
    111111     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    112112     * {@link JAXBElement }{@code <}{@link CTMacroName }{@code >} 
    113113     * {@link JAXBElement }{@code <}{@link CTFFHelpText }{@code >} 
    114      * {@link JAXBElement }{@code <}{@link CTFFDDList }{@code >} 
    115114     * {@link JAXBElement }{@code <}{@link CTFFStatusText }{@code >} 
    116      * {@link JAXBElement }{@code <}{@link CTFFTextInput }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTFFName }{@code >} 
     116     * {@link JAXBElement }{@code <}{@link CTMacroName }{@code >} 
     117     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    117118     * {@link JAXBElement }{@code <}{@link CTFFCheckBox }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTMacroName }{@code >} 
    119119     *  
    120120     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTFtnEdn.java

    r546 r568  
    6767 
    6868    @XmlElementRefs({ 
     69        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     70        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
     71        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6977        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
     78        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     79        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     81        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7185        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    73         @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
    74         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7787        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8288        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    83         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    88         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8989        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9090        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9193        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    93         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    94         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    95         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    96         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     94        @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     95        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
     96        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    9797    }) 
    9898    protected List<Object> egBlockLevelElts; 
     
    122122     * <p> 
    123123     * Objects of the following type(s) are allowed in the list 
    124      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    125      * {@link SdtBlock } 
     124     * {@link RunDel } 
     125     * {@link P } 
     126     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     133     * {@link ProofErr } 
     134     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     135     * {@link CommentRangeStart } 
     136     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     137     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     138     * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
     139     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    126140     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    127      * {@link RunIns } 
    128      * {@link P } 
    129      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    130      * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     141     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    132142     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    133      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    137143     * {@link CommentRangeEnd } 
    138      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    139      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    140      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    141      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    142      * {@link ProofErr } 
    143      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    144144     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    145145     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     146     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     147     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    146148     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    147      * {@link CommentRangeStart } 
    148      * {@link RunDel } 
    149      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    150      * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    151      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     149     * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
     150     * {@link SdtBlock } 
     151     * {@link RunIns } 
    152152     *  
    153153     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTPageNumber.java

    r359 r568  
    4141 *   &lt;complexContent> 
    4242 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 
    43  *       &lt;attribute name="fmt" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_NumberFormat" /> 
     43 *       &lt;attribute name="fmt" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}NumberFormat" /> 
    4444 *       &lt;attribute name="start" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" /> 
    4545 *       &lt;attribute name="chapStyle" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" /> 
     
    5959 
    6060    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    61     protected STNumberFormat fmt; 
     61    protected NumberFormat fmt; 
    6262    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main") 
    6363    protected BigInteger start; 
     
    7474     * @return 
    7575     *     possible object is 
    76      *     {@link STNumberFormat } 
     76     *     {@link NumberFormat } 
    7777     *      
    7878     */ 
    79     public STNumberFormat getFmt() { 
     79    public NumberFormat getFmt() { 
    8080        return fmt; 
    8181    } 
     
    8686     * @param value 
    8787     *     allowed object is 
    88      *     {@link STNumberFormat } 
     88     *     {@link NumberFormat } 
    8989     *      
    9090     */ 
    91     public void setFmt(STNumberFormat value) { 
     91    public void setFmt(NumberFormat value) { 
    9292        this.fmt = value; 
    9393    } 
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTParaRPrOriginal.java

    r546 r568  
    7272    protected CTTrackChange moveTo; 
    7373    @XmlElementRefs({ 
     74        @XmlElementRef(name = "iCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "u", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = U.class), 
     76        @XmlElementRef(name = "bCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "effect", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "vanish", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "rFonts", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RFonts.class), 
     80        @XmlElementRef(name = "dstrike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "strike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "em", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "bdr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "spacing", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7485        @XmlElementRef(name = "cs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "bdr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7686        @XmlElementRef(name = "w", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "lang", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "position", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "snapToGrid", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "smallCaps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "shadow", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "highlight", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Highlight.class), 
     93        @XmlElementRef(name = "i", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     94        @XmlElementRef(name = "eastAsianLayout", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     95        @XmlElementRef(name = "shd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     96        @XmlElementRef(name = "webHidden", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     97        @XmlElementRef(name = "kern", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     98        @XmlElementRef(name = "szCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     99        @XmlElementRef(name = "caps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     100        @XmlElementRef(name = "vertAlign", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     101        @XmlElementRef(name = "emboss", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     102        @XmlElementRef(name = "color", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Color.class), 
     103        @XmlElementRef(name = "noProof", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     104        @XmlElementRef(name = "outline", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     105        @XmlElementRef(name = "rStyle", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RStyle.class), 
     106        @XmlElementRef(name = "fitText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     107        @XmlElementRef(name = "sz", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77108        @XmlElementRef(name = "imprint", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "effect", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "rFonts", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RFonts.class), 
    80         @XmlElementRef(name = "vanish", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "webHidden", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "color", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Color.class), 
    83         @XmlElementRef(name = "strike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "smallCaps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "noProof", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "kern", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "eastAsianLayout", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "sz", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     109        @XmlElementRef(name = "b", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     110        @XmlElementRef(name = "oMath", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89111        @XmlElementRef(name = "specVanish", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "bCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "rtl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "dstrike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "highlight", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Highlight.class), 
    94         @XmlElementRef(name = "emboss", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    95         @XmlElementRef(name = "position", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    96         @XmlElementRef(name = "vertAlign", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    97         @XmlElementRef(name = "rStyle", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RStyle.class), 
    98         @XmlElementRef(name = "em", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    99         @XmlElementRef(name = "iCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    100         @XmlElementRef(name = "b", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    101         @XmlElementRef(name = "caps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    102         @XmlElementRef(name = "fitText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    103         @XmlElementRef(name = "szCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    104         @XmlElementRef(name = "shadow", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    105         @XmlElementRef(name = "outline", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    106         @XmlElementRef(name = "i", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    107         @XmlElementRef(name = "oMath", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    108         @XmlElementRef(name = "u", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = U.class), 
    109         @XmlElementRef(name = "spacing", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    110         @XmlElementRef(name = "snapToGrid", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    111         @XmlElementRef(name = "shd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    112         @XmlElementRef(name = "lang", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     112        @XmlElementRef(name = "rtl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    113113    }) 
    114114    protected List<Object> egrPrBase; 
     
    231231     * Objects of the following type(s) are allowed in the list 
    232232     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     233     * {@link U } 
     234     * {@link JAXBElement }{@code <}{@link CTTextEffect }{@code >} 
     235     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     236     * {@link RFonts } 
     237     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     238     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     239     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     240     * {@link JAXBElement }{@code <}{@link CTEm }{@code >} 
     241     * {@link JAXBElement }{@code <}{@link CTSignedTwipsMeasure }{@code >} 
     242     * {@link JAXBElement }{@code <}{@link CTBorder }{@code >} 
     243     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     244     * {@link JAXBElement }{@code <}{@link CTLanguage }{@code >} 
    233245     * {@link JAXBElement }{@code <}{@link CTTextScale }{@code >} 
    234      * {@link JAXBElement }{@code <}{@link CTBorder }{@code >} 
    235      * {@link JAXBElement }{@code <}{@link CTTextEffect }{@code >} 
    236      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    237      * {@link RFonts } 
     246     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     247     * {@link JAXBElement }{@code <}{@link CTSignedHpsMeasure }{@code >} 
     248     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     249     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     250     * {@link Highlight } 
     251     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     252     * {@link JAXBElement }{@code <}{@link CTShd }{@code >} 
     253     * {@link JAXBElement }{@code <}{@link CTEastAsianLayout }{@code >} 
     254     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     255     * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
     256     * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
     257     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     258     * {@link JAXBElement }{@code <}{@link CTVerticalAlignRun }{@code >} 
    238259     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    239260     * {@link Color } 
    240      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    241      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    242      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     261     * {@link RStyle } 
     262     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     263     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     264     * {@link JAXBElement }{@code <}{@link CTFitText }{@code >} 
    243265     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    244266     * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
    245      * {@link JAXBElement }{@code <}{@link CTEastAsianLayout }{@code >} 
    246      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    247      * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
    248      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    249      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    250      * {@link Highlight } 
    251      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    252      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    253      * {@link JAXBElement }{@code <}{@link CTSignedHpsMeasure }{@code >} 
    254      * {@link JAXBElement }{@code <}{@link CTEm }{@code >} 
    255      * {@link RStyle } 
    256      * {@link JAXBElement }{@code <}{@link CTVerticalAlignRun }{@code >} 
    257      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    258      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    259      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    260      * {@link JAXBElement }{@code <}{@link CTFitText }{@code >} 
    261      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    262      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    263      * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
    264      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    265      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    266      * {@link U } 
    267      * {@link JAXBElement }{@code <}{@link CTSignedTwipsMeasure }{@code >} 
    268      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    269      * {@link JAXBElement }{@code <}{@link CTShd }{@code >} 
    270      * {@link JAXBElement }{@code <}{@link CTLanguage }{@code >} 
     267     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     268     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     269     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     270     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    271271     *  
    272272     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTRPrChange.java

    r546 r568  
    158158 
    159159        @XmlElementRefs({ 
     160            @XmlElementRef(name = "i", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     161            @XmlElementRef(name = "vertAlign", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     162            @XmlElementRef(name = "lang", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     163            @XmlElementRef(name = "rtl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     164            @XmlElementRef(name = "shd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     165            @XmlElementRef(name = "shadow", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     166            @XmlElementRef(name = "iCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     167            @XmlElementRef(name = "u", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = U.class), 
     168            @XmlElementRef(name = "fitText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     169            @XmlElementRef(name = "dstrike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     170            @XmlElementRef(name = "rFonts", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RFonts.class), 
     171            @XmlElementRef(name = "imprint", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     172            @XmlElementRef(name = "caps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     173            @XmlElementRef(name = "szCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     174            @XmlElementRef(name = "noProof", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     175            @XmlElementRef(name = "position", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     176            @XmlElementRef(name = "outline", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     177            @XmlElementRef(name = "bCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     178            @XmlElementRef(name = "cs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     179            @XmlElementRef(name = "w", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     180            @XmlElementRef(name = "highlight", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Highlight.class), 
     181            @XmlElementRef(name = "b", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     182            @XmlElementRef(name = "effect", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     183            @XmlElementRef(name = "sz", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     184            @XmlElementRef(name = "smallCaps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     185            @XmlElementRef(name = "spacing", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     186            @XmlElementRef(name = "oMath", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     187            @XmlElementRef(name = "specVanish", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     188            @XmlElementRef(name = "eastAsianLayout", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     189            @XmlElementRef(name = "kern", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     190            @XmlElementRef(name = "color", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Color.class), 
     191            @XmlElementRef(name = "snapToGrid", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     192            @XmlElementRef(name = "bdr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     193            @XmlElementRef(name = "rStyle", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RStyle.class), 
     194            @XmlElementRef(name = "em", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     195            @XmlElementRef(name = "strike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    160196            @XmlElementRef(name = "emboss", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    161197            @XmlElementRef(name = "webHidden", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    162             @XmlElementRef(name = "fitText", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    163             @XmlElementRef(name = "vanish", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    164             @XmlElementRef(name = "vertAlign", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    165             @XmlElementRef(name = "effect", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    166             @XmlElementRef(name = "rFonts", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RFonts.class), 
    167             @XmlElementRef(name = "em", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    168             @XmlElementRef(name = "position", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    169             @XmlElementRef(name = "b", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    170             @XmlElementRef(name = "dstrike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    171             @XmlElementRef(name = "i", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    172             @XmlElementRef(name = "color", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Color.class), 
    173             @XmlElementRef(name = "w", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    174             @XmlElementRef(name = "oMath", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    175             @XmlElementRef(name = "spacing", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    176             @XmlElementRef(name = "specVanish", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    177             @XmlElementRef(name = "cs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    178             @XmlElementRef(name = "lang", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    179             @XmlElementRef(name = "iCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    180             @XmlElementRef(name = "highlight", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Highlight.class), 
    181             @XmlElementRef(name = "shd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    182             @XmlElementRef(name = "szCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    183             @XmlElementRef(name = "rtl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    184             @XmlElementRef(name = "eastAsianLayout", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    185             @XmlElementRef(name = "snapToGrid", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    186             @XmlElementRef(name = "smallCaps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    187             @XmlElementRef(name = "rStyle", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RStyle.class), 
    188             @XmlElementRef(name = "noProof", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    189             @XmlElementRef(name = "imprint", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    190             @XmlElementRef(name = "bCs", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    191             @XmlElementRef(name = "caps", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    192             @XmlElementRef(name = "bdr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    193             @XmlElementRef(name = "sz", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    194             @XmlElementRef(name = "strike", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    195             @XmlElementRef(name = "u", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = U.class), 
    196             @XmlElementRef(name = "kern", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    197             @XmlElementRef(name = "outline", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    198             @XmlElementRef(name = "shadow", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     198            @XmlElementRef(name = "vanish", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    199199        }) 
    200200        protected List<Object> egrPrBase; 
     
    220220         * <p> 
    221221         * Objects of the following type(s) are allowed in the list 
     222         * {@link JAXBElement }{@code <}{@link CTLanguage }{@code >} 
     223         * {@link JAXBElement }{@code <}{@link CTVerticalAlignRun }{@code >} 
     224         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     225         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     226         * {@link JAXBElement }{@code <}{@link CTShd }{@code >} 
    222227         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    223228         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    224229         * {@link JAXBElement }{@code <}{@link CTFitText }{@code >} 
    225          * {@link JAXBElement }{@code <}{@link CTVerticalAlignRun }{@code >} 
    226          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     230         * {@link U } 
     231         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     232         * {@link RFonts } 
     233         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     234         * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
     235         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     236         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     237         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     238         * {@link JAXBElement }{@code <}{@link CTSignedHpsMeasure }{@code >} 
     239         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     240         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     241         * {@link JAXBElement }{@code <}{@link CTTextScale }{@code >} 
     242         * {@link Highlight } 
     243         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     244         * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
    227245         * {@link JAXBElement }{@code <}{@link CTTextEffect }{@code >} 
     246         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     247         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     248         * {@link JAXBElement }{@code <}{@link CTSignedTwipsMeasure }{@code >} 
     249         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     250         * {@link JAXBElement }{@code <}{@link CTEastAsianLayout }{@code >} 
     251         * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
     252         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     253         * {@link Color } 
     254         * {@link RStyle } 
     255         * {@link JAXBElement }{@code <}{@link CTBorder }{@code >} 
    228256         * {@link JAXBElement }{@code <}{@link CTEm }{@code >} 
    229          * {@link RFonts } 
    230          * {@link JAXBElement }{@code <}{@link CTSignedHpsMeasure }{@code >} 
    231          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    232          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    233          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    234          * {@link Color } 
    235          * {@link JAXBElement }{@code <}{@link CTTextScale }{@code >} 
    236          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    237          * {@link JAXBElement }{@code <}{@link CTSignedTwipsMeasure }{@code >} 
    238          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    239          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    240          * {@link JAXBElement }{@code <}{@link CTLanguage }{@code >} 
    241          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    242          * {@link Highlight } 
    243          * {@link JAXBElement }{@code <}{@link CTShd }{@code >} 
    244          * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
    245          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    246          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    247          * {@link JAXBElement }{@code <}{@link CTEastAsianLayout }{@code >} 
    248          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    249          * {@link RStyle } 
    250          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    251          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    252          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    253          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    254          * {@link JAXBElement }{@code <}{@link CTBorder }{@code >} 
    255          * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
    256          * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    257          * {@link U } 
    258          * {@link JAXBElement }{@code <}{@link HpsMeasure }{@code >} 
     257         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     258         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    259259         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    260260         * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTRel.java

    r359 r568  
    5050@XmlAccessorType(XmlAccessType.FIELD) 
    5151@XmlType(name = "CT_Rel") 
    52 public class CTRel 
    53     implements Child 
     52public class CTRel implements Child 
    5453{ 
    5554 
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTRubyContent.java

    r546 r568  
    6161 
    6262    @XmlElementRefs({ 
     63        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     64        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     67        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    6371        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
     72        @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
     73        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     78        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6681        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6782        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    69         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7284        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7485        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    80         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    81         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    84         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class) 
     86        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    8787    }) 
    8888    protected List<Object> egRubyContent; 
     
    108108     * <p> 
    109109     * Objects of the following type(s) are allowed in the list 
     110     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     111     * {@link CommentRangeStart } 
     112     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     113     * {@link RunDel } 
    110114     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     116     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     117     * {@link CommentRangeEnd } 
    111118     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     120     * {@link R } 
     121     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     124     * {@link ProofErr } 
     125     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    112133     * {@link RunIns } 
    113      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    114      * {@link ProofErr } 
    115      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    116      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    117      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    126      * {@link CommentRangeStart } 
    127      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    128      * {@link CommentRangeEnd } 
    129      * {@link RunDel } 
    130      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    133      * {@link R } 
    134134     *  
    135135     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTSdtContentCell.java

    r546 r568  
    6161 
    6262    @XmlElementRefs({ 
     63        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     64        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     70        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "tc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     77        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     81        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6385        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    65         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    72         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7387        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    78         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "tc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    84         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    86         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     88        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    8989    }) 
    9090    protected List<Object> egContentCellContent; 
     
    110110     * <p> 
    111111     * Objects of the following type(s) are allowed in the list 
     112     * {@link RunDel } 
     113     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    112114     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    113      * {@link RunIns } 
     115     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     116     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     117     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     118     * {@link ProofErr } 
     119     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link Tc }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    114124     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     125     * {@link CommentRangeStart } 
     126     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     129     * {@link CommentRangeEnd } 
     130     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    115131     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    116132     * {@link JAXBElement }{@code <}{@link CTCustomXmlCell }{@code >} 
    117133     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    120      * {@link CommentRangeEnd } 
    121      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     134     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTSdtCell }{@code >} 
    122136     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    126      * {@link ProofErr } 
    127      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link Tc }{@code >} 
    130      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    132      * {@link CommentRangeStart } 
    133      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    134      * {@link RunDel } 
    135      * {@link JAXBElement }{@code <}{@link CTSdtCell }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     137     * {@link RunIns } 
    138138     *  
    139139     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTSdtContentRow.java

    r546 r568  
    6161 
    6262    @XmlElementRefs({ 
    63         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    64         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     63        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     64        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6665        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     69        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7071        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    72         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7472        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7673        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7774        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     75        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     77        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     80        @XmlElementRef(name = "tr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Tr.class), 
     81        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7982        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "tr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = Tr.class), 
    82         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    83         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    85         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8687        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     88        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    8989    }) 
    9090    protected List<Object> egContentRowContent; 
     
    110110     * <p> 
    111111     * Objects of the following type(s) are allowed in the list 
    112      * {@link RunIns } 
     112     * {@link RunDel } 
    113113     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     114     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     116     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     117     * {@link ProofErr } 
     118     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    114119     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    115      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTSdtRow }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     125     * {@link CommentRangeStart } 
     126     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTCustomXmlRow }{@code >} 
     128     * {@link CommentRangeEnd } 
     129     * {@link Tr } 
     130     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    116131     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    117132     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    118133     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTSdtRow }{@code >} 
    120      * {@link CommentRangeEnd } 
     134     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    121135     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    127      * {@link ProofErr } 
    128      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    130      * {@link Tr } 
    131      * {@link CommentRangeStart } 
     136     * {@link RunIns } 
    132137     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    133      * {@link RunDel } 
    134      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link CTCustomXmlRow }{@code >} 
    138138     *  
    139139     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTSdtContentRun.java

    r546 r568  
    6161 
    6262    @XmlElementRefs({ 
     63        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     64        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
     67        @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6368        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     71        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "smartTag", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6474        @XmlElementRef(name = "hyperlink", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "fldSimple", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     81        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     84        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6591        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    66         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "smartTag", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "fldSimple", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    74         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    79         @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    88         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    90         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
    92         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     92        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    9393    }) 
    9494    protected List<Object> paragraphContent; 
     
    114114     * <p> 
    115115     * Objects of the following type(s) are allowed in the list 
     116     * {@link RunDel } 
     117     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    116118     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    117      * {@link JAXBElement }{@code <}{@link CTHyperlink }{@code >} 
    118      * {@link RunIns } 
     119     * {@link R } 
     120     * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     123     * {@link ProofErr } 
     124     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTSmartTagRun }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link org.docx4j.wml.P.Hyperlink }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTSimpleField }{@code >} 
     133     * {@link CommentRangeStart } 
     134     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link SdtRun }{@code >} 
     136     * {@link CommentRangeEnd } 
     137     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     138     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     139     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     140     * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
     141     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    119142     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    120143     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTSmartTagRun }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link SdtRun }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTSimpleField }{@code >} 
    126      * {@link CommentRangeEnd } 
    127      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    130      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    131      * {@link ProofErr } 
    132      * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
    133      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    138144     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    139      * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
    140      * {@link CommentRangeStart } 
    141      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    142      * {@link RunDel } 
    143      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    144      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    145      * {@link R } 
     145     * {@link RunIns } 
    146146     *  
    147147     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTSimpleField.java

    r546 r568  
    7070    protected Text fldData; 
    7171    @XmlElementRefs({ 
    72         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
     72        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     74        @XmlElementRef(name = "hyperlink", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
     81        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "smartTag", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     84        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     89        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     93        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     94        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     95        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     96        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7397        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     98        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7799        @XmlElementRef(name = "fldSimple", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    83         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89100        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    91         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    94         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    95         @XmlElementRef(name = "smartTag", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    96         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    97         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    98         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    99         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    100         @XmlElementRef(name = "hyperlink", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    101         @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class) 
     101        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    102102    }) 
    103103    protected List<Object> paragraphContent; 
     
    153153     * <p> 
    154154     * Objects of the following type(s) are allowed in the list 
    155      * {@link RunIns } 
     155     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     156     * {@link RunDel } 
     157     * {@link JAXBElement }{@code <}{@link org.docx4j.wml.P.Hyperlink }{@code >} 
     158     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     159     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     160     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     161     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     162     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     163     * {@link R } 
     164     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     165     * {@link JAXBElement }{@code <}{@link CTSmartTagRun }{@code >} 
     166     * {@link ProofErr } 
     167     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     168     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     169     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     170     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     171     * {@link CommentRangeStart } 
     172     * {@link JAXBElement }{@code <}{@link SdtRun }{@code >} 
     173     * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
    156174     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    157175     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    158      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     176     * {@link CommentRangeEnd } 
     177     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     178     * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
     179     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     180     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     181     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     182     * {@link JAXBElement }{@code <}{@link CTSimpleField }{@code >} 
    159183     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    160      * {@link JAXBElement }{@code <}{@link CTSimpleField }{@code >} 
    161      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    162      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    163      * {@link JAXBElement }{@code <}{@link SdtRun }{@code >} 
    164      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    165      * {@link CommentRangeEnd } 
    166      * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
    167      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    168      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    169      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    170      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    171      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    172      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    173      * {@link ProofErr } 
    174      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    175      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    176      * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
    177      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    178      * {@link JAXBElement }{@code <}{@link CTSmartTagRun }{@code >} 
    179      * {@link CommentRangeStart } 
    180      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    181      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    182      * {@link RunDel } 
    183      * {@link JAXBElement }{@code <}{@link CTHyperlink }{@code >} 
    184      * {@link R } 
     184     * {@link RunIns } 
    185185     *  
    186186     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTSmartTagRun.java

    r546 r568  
    6969    protected CTSmartTagPr smartTagPr; 
    7070    @XmlElementRefs({ 
    71         @XmlElementRef(name = "fldSimple", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    75         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "hyperlink", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7871        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    86         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    92         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    94         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    95         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    96         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    9772        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    9873        @XmlElementRef(name = "smartTag", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    9977        @XmlElementRef(name = "r", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = R.class), 
    100         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     78        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     79        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "subDoc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     84        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     87        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "fldSimple", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "hyperlink", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     93        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     94        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     95        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     96        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     97        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     98        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     99        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     100        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    101101    }) 
    102102    protected List<Object> paragraphContent; 
     
    150150     * <p> 
    151151     * Objects of the following type(s) are allowed in the list 
    152      * {@link JAXBElement }{@code <}{@link CTSimpleField }{@code >} 
    153      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    154      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    155      * {@link RunIns } 
    156      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    157      * {@link JAXBElement }{@code <}{@link CTHyperlink }{@code >} 
    158      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    159152     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    160      * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
    161      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    162      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    163      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    164      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    165      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    166      * {@link CommentRangeEnd } 
    167      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    168      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    169      * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
    170      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    171      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    172      * {@link ProofErr } 
    173      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    174      * {@link JAXBElement }{@code <}{@link SdtRun }{@code >} 
    175      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    176      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    177      * {@link CommentRangeStart } 
    178153     * {@link RunDel } 
    179154     * {@link JAXBElement }{@code <}{@link CTSmartTagRun }{@code >} 
     155     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     156     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     157     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    180158     * {@link R } 
    181      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     159     * {@link ProofErr } 
     160     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     161     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     162     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     163     * {@link JAXBElement }{@code <}{@link CTRel }{@code >} 
     164     * {@link CommentRangeStart } 
     165     * {@link JAXBElement }{@code <}{@link CTCustomXmlRun }{@code >} 
     166     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     167     * {@link CommentRangeEnd } 
     168     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     169     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     170     * {@link JAXBElement }{@code <}{@link CTSimpleField }{@code >} 
     171     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     172     * {@link JAXBElement }{@code <}{@link org.docx4j.wml.P.Hyperlink }{@code >} 
     173     * {@link JAXBElement }{@code <}{@link SdtRun }{@code >} 
     174     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     175     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     176     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     177     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     178     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     179     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     180     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     181     * {@link RunIns } 
    182182     *  
    183183     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTTrPrBase.java

    r546 r568  
    115115 
    116116    @XmlElementRefs({ 
     117        @XmlElementRef(name = "cantSplit", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     118        @XmlElementRef(name = "gridBefore", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     119        @XmlElementRef(name = "tblCellSpacing", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     120        @XmlElementRef(name = "wAfter", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     121        @XmlElementRef(name = "wBefore", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     122        @XmlElementRef(name = "trHeight", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    117123        @XmlElementRef(name = "tblHeader", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    118         @XmlElementRef(name = "cantSplit", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    119         @XmlElementRef(name = "cnfStyle", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    120         @XmlElementRef(name = "wAfter", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    121124        @XmlElementRef(name = "jc", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    122         @XmlElementRef(name = "tblCellSpacing", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    123         @XmlElementRef(name = "trHeight", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     125        @XmlElementRef(name = "divId", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     126        @XmlElementRef(name = "hidden", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    124127        @XmlElementRef(name = "gridAfter", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    125         @XmlElementRef(name = "hidden", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    126         @XmlElementRef(name = "gridBefore", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    127         @XmlElementRef(name = "wBefore", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    128         @XmlElementRef(name = "divId", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     128        @XmlElementRef(name = "cnfStyle", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    129129    }) 
    130130    protected List<JAXBElement<?>> cnfStyleOrDivIdOrGridBefore; 
     
    151151     * Objects of the following type(s) are allowed in the list 
    152152     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    153      * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    154      * {@link JAXBElement }{@code <}{@link CTCnf }{@code >} 
    155153     * {@link JAXBElement }{@code <}{@link TblWidth }{@code >} 
    156      * {@link JAXBElement }{@code <}{@link Jc }{@code >} 
     154     * {@link JAXBElement }{@code <}{@link CTTrPrBase.GridBefore }{@code >} 
     155     * {@link JAXBElement }{@code <}{@link TblWidth }{@code >} 
    157156     * {@link JAXBElement }{@code <}{@link TblWidth }{@code >} 
    158157     * {@link JAXBElement }{@code <}{@link CTHeight }{@code >} 
    159      * {@link JAXBElement }{@code <}{@link CTTrPrBase.GridAfter }{@code >} 
    160      * {@link JAXBElement }{@code <}{@link CTTrPrBase.GridBefore }{@code >} 
     158     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
     159     * {@link JAXBElement }{@code <}{@link Jc }{@code >} 
    161160     * {@link JAXBElement }{@code <}{@link BooleanDefaultTrue }{@code >} 
    162161     * {@link JAXBElement }{@code <}{@link CTTrPrBase.DivId }{@code >} 
    163      * {@link JAXBElement }{@code <}{@link TblWidth }{@code >} 
     162     * {@link JAXBElement }{@code <}{@link CTTrPrBase.GridAfter }{@code >} 
     163     * {@link JAXBElement }{@code <}{@link CTCnf }{@code >} 
    164164     *  
    165165     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/CTTxbxContent.java

    r546 r568  
    6161 
    6262    @XmlElementRefs({ 
     63        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     64        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
     65        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     66        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     72        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     76        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     80        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6382        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
     86        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6488        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
    6689        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    67         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
    69         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    73         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    79         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    86         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    88         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     90        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    9191    }) 
    9292    protected List<Object> egBlockLevelElts; 
     
    112112     * <p> 
    113113     * Objects of the following type(s) are allowed in the list 
     114     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     115     * {@link P } 
     116     * {@link RunDel } 
     117     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     118     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
     122     * {@link ProofErr } 
     123     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     126     * {@link CommentRangeStart } 
     127     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     130     * {@link CommentRangeEnd } 
     131     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
     133     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     134     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     136     * {@link SdtBlock } 
    114137     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    115138     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    116      * {@link SdtBlock } 
    117      * {@link RunIns } 
    118      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    119      * {@link P } 
    120      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    123      * {@link CommentRangeEnd } 
    124      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    125139     * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
    126140     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    129      * {@link ProofErr } 
    130      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    133      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    136      * {@link CommentRangeStart } 
    137      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    138      * {@link RunDel } 
    139      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    140      * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    141      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     141     * {@link RunIns } 
    142142     *  
    143143     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/Comments.java

    r546 r568  
    166166 
    167167        @XmlElementRefs({ 
     168            @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     169            @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     170            @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
     171            @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     172            @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     173            @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     174            @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     175            @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     176            @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     177            @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     178            @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     179            @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     180            @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     181            @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     182            @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     183            @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     184            @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     185            @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     186            @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     187            @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     188            @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     189            @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     190            @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     191            @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     192            @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    168193            @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
    169             @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    170             @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
    171             @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    172             @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    173             @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    174             @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    175             @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    176             @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    177             @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    178             @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    179194            @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    180             @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    181             @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    182             @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    183             @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    184             @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    185             @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    186             @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    187             @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    188             @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    189             @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    190             @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    191             @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    192             @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    193             @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    194             @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    195             @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     195            @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class) 
    196196        }) 
    197197        protected List<Object> egBlockLevelElts; 
     
    219219         * <p> 
    220220         * Objects of the following type(s) are allowed in the list 
    221          * {@link SdtBlock } 
    222          * {@link RunIns } 
     221         * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
     222         * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    223223         * {@link P } 
    224          * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    225          * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    226          * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     224         * {@link RunDel } 
    227225         * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    228          * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    229          * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    230          * {@link CommentRangeEnd } 
    231          * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    232          * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    233          * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    234          * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    235          * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    236          * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    237          * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    238          * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    239          * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    240226         * {@link ProofErr } 
    241227         * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     228         * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    242229         * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    243230         * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    244231         * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
     232         * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    245233         * {@link CommentRangeStart } 
    246          * {@link RunDel } 
    247          * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
     234         * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     235         * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     236         * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     237         * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     238         * {@link CommentRangeEnd } 
     239         * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     240         * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     241         * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     242         * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    248243         * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     244         * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     245         * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     246         * {@link SdtBlock } 
     247         * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     248         * {@link RunIns } 
    249249         *  
    250250         *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/Drawing.java

    r498 r568  
    6565 
    6666    @XmlElements({ 
    67         @XmlElement(name = "anchor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", type = Anchor.class), 
    68         @XmlElement(name = "inline", namespace = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", type = Inline.class) 
     67        @XmlElement(name = "inline", namespace = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", type = Inline.class), 
     68        @XmlElement(name = "anchor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", type = Anchor.class) 
    6969    }) 
    7070    protected List<Object> anchorOrInline; 
     
    9090     * <p> 
    9191     * Objects of the following type(s) are allowed in the list 
     92     * {@link Inline } 
    9293     * {@link Anchor } 
    93      * {@link Inline } 
    9494     *  
    9595     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/Ftr.java

    r546 r568  
    6565 
    6666    @XmlElementRefs({ 
    67         @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
    68         @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    69         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    7068        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
    71         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7574        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7675        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     77        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     80        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     84        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    7988        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     89        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
     90        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    8191        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    84         @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    93         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    94         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     92        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     93        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
     94        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    9595    }) 
    9696    protected List<Object> egBlockLevelElts; 
     
    116116     * <p> 
    117117     * Objects of the following type(s) are allowed in the list 
    118      * {@link SdtBlock } 
    119      * {@link RunIns } 
    120      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     118     * {@link RunDel } 
    121119     * {@link P } 
     120     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    122124     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    126125     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    127126     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     127     * {@link ProofErr } 
     128     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     130     * {@link CommentRangeStart } 
     131     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    128132     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     133     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     134     * {@link CommentRangeEnd } 
     135     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     136     * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
     137     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     138     * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    130139     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    131      * {@link CommentRangeEnd } 
     140     * {@link SdtBlock } 
     141     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    132142     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    133143     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    134      * {@link ProofErr } 
    135      * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
    138      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    139      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    140      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    141      * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    142      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    143      * {@link CommentRangeStart } 
    144      * {@link RunDel } 
    145      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     144     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     145     * {@link RunIns } 
    146146     *  
    147147     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/Hdr.java

    r546 r568  
    6565 
    6666    @XmlElementRefs({ 
     67        @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
     72        @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
     73        @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
     77        @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
     86        @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
     87        @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6790        @XmlElementRef(name = "sdt", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = SdtBlock.class), 
     91        @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
     92        @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    6893        @XmlElementRef(name = "ins", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunIns.class), 
    69         @XmlElementRef(name = "p", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = P.class), 
    70         @XmlElementRef(name = "moveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "moveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "moveTo", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "customXmlMoveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "customXmlInsRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "customXmlMoveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "customXmlInsRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "altChunk", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "permEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "commentRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeEnd.class), 
    80         @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "bookmarkStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "moveToRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "permStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "customXml", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "proofErr", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = ProofErr.class), 
    86         @XmlElementRef(name = "moveFromRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "customXmlDelRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "customXmlMoveFromRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "commentRangeStart", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = CommentRangeStart.class), 
    90         @XmlElementRef(name = "del", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = RunDel.class), 
    91         @XmlElementRef(name = "customXmlMoveToRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "moveFrom", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "tbl", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class), 
    94         @XmlElementRef(name = "customXmlDelRangeEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
     94        @XmlElementRef(name = "bookmarkEnd", namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", type = JAXBElement.class) 
    9595    }) 
    9696    protected List<Object> egBlockLevelElts; 
     
    116116     * <p> 
    117117     * Objects of the following type(s) are allowed in the list 
    118      * {@link SdtBlock } 
    119      * {@link RunIns } 
     118     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    120122     * {@link P } 
    121      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
     123     * {@link RunDel } 
     124     * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     127     * {@link ProofErr } 
     128     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    122129     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTAltChunk }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTPerm }{@code >} 
    130      * {@link CommentRangeEnd } 
    131      * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
    133      * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTCustomXmlBlock }{@code >} 
    136      * {@link ProofErr } 
    137130     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
    138131     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    139      * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    140      * {@link CommentRangeStart } 
    141      * {@link RunDel } 
    142132     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     133     * {@link JAXBElement }{@code <}{@link CTMoveBookmark }{@code >} 
    143134     * {@link JAXBElement }{@code <}{@link RunTrackChange }{@code >} 
    144135     * {@link JAXBElement }{@code <}{@link Tbl }{@code >} 
     136     * {@link CommentRangeStart } 
     137     * {@link CommentRangeEnd } 
     138     * {@link JAXBElement }{@code <}{@link CTBookmark }{@code >} 
     139     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
    145140     * {@link JAXBElement }{@code <}{@link CTMarkup }{@code >} 
     141     * {@link SdtBlock } 
     142     * {@link JAXBElement }{@code <}{@link RangePermissionStart }{@code >} 
     143     * {@link JAXBElement }{@code <}{@link CTTrackChange }{@code >} 
     144     * {@link JAXBElement }{@code <}{@link CTMarkupRange }{@code >} 
     145     * {@link RunIns } 
    146146     *  
    147147     *  
  • trunk/docx4j/src/main/java/org/docx4j/wml/NumFmt.java

    r359 r568  
    4040 *   &lt;complexContent> 
    4141 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 
    42  *       &lt;attribute name="val" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_NumberFormat" /> 
     42 *       &lt;attribute name="val" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}NumberFormat" /> 
    4343 *     &lt;/restriction> 
    4444 *   &lt;/complexContent> 
     
    5555 
    5656    @XmlAttribute(namespace = "http://schemas.openxmlformats.org/wordprocessingml/2006/main", required = true) 
    57     protected STNumberFormat val; 
     57    protected NumberFormat val; 
    5858    @XmlTransient 
    5959    private Object parent; 
     
    6464     * @return 
    6565     *     possible object is 
    66      *     {@link STNumberFormat } 
     66     *     {@link NumberFormat } 
    6767     *      
    6868     */ 
    69     public STNumberFormat getVal() { 
     69    public NumberFormat getVal() { 
    7070        return val; 
    7171    } 
     
    7676     * @param value 
    7777     *     allowed object is 
    78      *     {@link STNumberFormat } 
     78     *     {@link NumberFormat } 
    7979     *      
    8080     */ 
    81     public void setVal(STNumberFormat value) { 
     81    public void setVal(NumberFormat value) { 
    8282        this.val = value; 
    8383    } 
  • trunk/docx4j/src/main/java/org/docx4j/wml/ObjectFactory.java

    r546 r568  
    4545public class ObjectFactory { 
    4646 
     47    private final static QName _TxbxContent_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "txbxContent"); 
    4748    private final static QName _Settings_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "settings"); 
    4849    private final static QName _Recipients_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "recipients"); 
     50    private final static QName _Endnotes_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "endnotes"); 
     51    private final static QName _Footnotes_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "footnotes"); 
    4952    private final static QName _WebSettings_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "webSettings"); 
    50     private final static QName _Footnotes_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "footnotes"); 
    51     private final static QName _TxbxContent_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "txbxContent"); 
    52     private final static QName _Endnotes_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "endnotes"); 
    53     private final static QName _RunInsMoveFromRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveFromRangeStart"); 
    54     private final static QName _RunInsMoveFrom_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveFrom"); 
    55     private final static QName _RunInsMoveFromRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveFromRangeEnd"); 
    56     private final static QName _RunInsCustomXmlMoveFromRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveFromRangeStart"); 
    57     private final static QName _RunInsSdt_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "sdt"); 
    58     private final static QName _RunInsCustomXmlDelRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlDelRangeStart"); 
    59     private final static QName _RunInsMoveToRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveToRangeEnd"); 
    60     private final static QName _RunInsCustomXmlDelRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlDelRangeEnd"); 
    61     private final static QName _RunInsCustomXmlMoveToRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveToRangeEnd"); 
    62     private final static QName _RunInsCustomXmlInsRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlInsRangeStart"); 
    63     private final static QName _RunInsCustomXmlMoveToRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveToRangeStart"); 
    64     private final static QName _RunInsCustomXmlInsRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlInsRangeEnd"); 
    65     private final static QName _RunInsPermStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "permStart"); 
    66     private final static QName _RunInsPermEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "permEnd"); 
    67     private final static QName _RunInsMoveToRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveToRangeStart"); 
    68     private final static QName _RunInsBookmarkEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "bookmarkEnd"); 
    69     private final static QName _RunInsCustomXml_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXml"); 
    70     private final static QName _RunInsBookmarkStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "bookmarkStart"); 
    71     private final static QName _RunInsMoveTo_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveTo"); 
    72     private final static QName _RunInsSmartTag_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "smartTag"); 
    73     private final static QName _RunInsCustomXmlMoveFromRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveFromRangeEnd"); 
     53    private final static QName _CTRubyContentMoveFromRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveFromRangeStart"); 
     54    private final static QName _CTRubyContentMoveFrom_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveFrom"); 
     55    private final static QName _CTRubyContentMoveFromRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveFromRangeEnd"); 
     56    private final static QName _CTRubyContentCustomXmlMoveFromRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveFromRangeStart"); 
     57    private final static QName _CTRubyContentCustomXmlDelRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlDelRangeStart"); 
     58    private final static QName _CTRubyContentMoveToRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveToRangeEnd"); 
     59    private final static QName _CTRubyContentCustomXmlDelRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlDelRangeEnd"); 
     60    private final static QName _CTRubyContentCustomXmlMoveToRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveToRangeEnd"); 
     61    private final static QName _CTRubyContentCustomXmlInsRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlInsRangeStart"); 
     62    private final static QName _CTRubyContentCustomXmlMoveToRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveToRangeStart"); 
     63    private final static QName _CTRubyContentCustomXmlInsRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlInsRangeEnd"); 
     64    private final static QName _CTRubyContentPermStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "permStart"); 
     65    private final static QName _CTRubyContentPermEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "permEnd"); 
     66    private final static QName _CTRubyContentMoveToRangeStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveToRangeStart"); 
     67    private final static QName _CTRubyContentBookmarkEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "bookmarkEnd"); 
     68    private final static QName _CTRubyContentBookmarkStart_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "bookmarkStart"); 
     69    private final static QName _CTRubyContentMoveTo_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "moveTo"); 
     70    private final static QName _CTRubyContentCustomXmlMoveFromRangeEnd_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXmlMoveFromRangeEnd"); 
     71    private final static QName _RunDelSdt_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "sdt"); 
     72    private final static QName _RunDelCustomXml_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "customXml"); 
     73    private final static QName _RunDelSmartTag_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "smartTag"); 
     74    private final static QName _PFldSimple_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "fldSimple"); 
     75    private final static QName _PHyperlink_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "hyperlink"); 
     76    private final static QName _PSubDoc_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "subDoc"); 
     77    private final static QName _CTTxbxContentTbl_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tbl"); 
     78    private final static QName _CTTxbxContentAltChunk_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "altChunk"); 
     79    private final static QName _CTFFDataEntryMacro_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "entryMacro"); 
     80    private final static QName _CTFFDataDdList_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "ddList"); 
     81    private final static QName _CTFFDataEnabled_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "enabled"); 
     82    private final static QName _CTFFDataName_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "name"); 
     83    private final static QName _CTFFDataCalcOnExit_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "calcOnExit"); 
     84    private final static QName _CTFFDataCheckBox_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "checkBox"); 
     85    private final static QName _CTFFDataStatusText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "statusText"); 
     86    private final static QName _CTFFDataHelpText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "helpText"); 
     87    private final static QName _CTFFDataTextInput_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "textInput"); 
     88    private final static QName _CTFFDataExitMacro_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "exitMacro"); 
    7489    private final static QName _CTRPrChangeRPrRtl_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "rtl"); 
    7590    private final static QName _CTRPrChangeRPrB_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "b"); 
    7691    private final static QName _CTRPrChangeRPrSnapToGrid_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "snapToGrid"); 
    7792    private final static QName _CTRPrChangeRPrI_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "i"); 
     93    private final static QName _CTRPrChangeRPrDstrike_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "dstrike"); 
    7894    private final static QName _CTRPrChangeRPrICs_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "iCs"); 
    79     private final static QName _CTRPrChangeRPrDstrike_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "dstrike"); 
    8095    private final static QName _CTRPrChangeRPrCs_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "cs"); 
     96    private final static QName _CTRPrChangeRPrNoProof_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "noProof"); 
    8197    private final static QName _CTRPrChangeRPrOMath_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "oMath"); 
    82     private final static QName _CTRPrChangeRPrNoProof_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "noProof"); 
    8398    private final static QName _CTRPrChangeRPrVertAlign_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "vertAlign"); 
    8499    private final static QName _CTRPrChangeRPrW_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "w"); 
     
    106121    private final static QName _CTRPrChangeRPrSz_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "sz"); 
    107122    private final static QName _CTRPrChangeRPrEmboss_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "emboss"); 
    108     private final static QName _PFldSimple_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "fldSimple"); 
    109     private final static QName _PHyperlink_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "hyperlink"); 
    110     private final static QName _PSubDoc_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "subDoc"); 
    111     private final static QName _HdrTbl_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tbl"); 
    112     private final static QName _HdrAltChunk_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "altChunk"); 
    113     private final static QName _CTCustomXmlCellTc_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tc"); 
    114     private final static QName _SdtPrRPr_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "rPr"); 
    115     private final static QName _SdtPrText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "text"); 
    116     private final static QName _SdtPrCitation_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "citation"); 
    117     private final static QName _SdtPrDocPartObj_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "docPartObj"); 
    118     private final static QName _SdtPrShowingPlcHdr_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "showingPlcHdr"); 
    119     private final static QName _SdtPrPlaceholder_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "placeholder"); 
    120     private final static QName _SdtPrAlias_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "alias"); 
    121     private final static QName _SdtPrLock_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "lock"); 
    122     private final static QName _SdtPrTemporary_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "temporary"); 
    123     private final static QName _SdtPrComboBox_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "comboBox"); 
    124     private final static QName _SdtPrBibliography_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "bibliography"); 
    125     private final static QName _SdtPrRichText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "richText"); 
    126     private final static QName _SdtPrDate_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "date"); 
    127     private final static QName _SdtPrDropDownList_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "dropDownList"); 
    128     private final static QName _SdtPrPicture_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "picture"); 
    129     private final static QName _SdtPrEquation_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "equation"); 
    130     private final static QName _SdtPrDataBinding_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "dataBinding"); 
    131     private final static QName _SdtPrDocPartList_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "docPartList"); 
    132     private final static QName _SdtPrGroup_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "group"); 
    133     private final static QName _CTFFDataDdList_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "ddList"); 
    134     private final static QName _CTFFDataEntryMacro_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "entryMacro"); 
    135     private final static QName _CTFFDataEnabled_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "enabled"); 
    136     private final static QName _CTFFDataCalcOnExit_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "calcOnExit"); 
    137     private final static QName _CTFFDataName_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "name"); 
    138     private final static QName _CTFFDataCheckBox_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "checkBox"); 
    139     private final static QName _CTFFDataStatusText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "statusText"); 
    140     private final static QName _CTFFDataHelpText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "helpText"); 
    141     private final static QName _CTFFDataTextInput_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "textInput"); 
    142     private final static QName _CTFFDataExitMacro_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "exitMacro"); 
    143     private final static QName _CTTrPrBaseTblHeader_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tblHeader"); 
    144     private final static QName _CTTrPrBaseJc_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "jc"); 
    145     private final static QName _CTTrPrBaseGridBefore_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "gridBefore"); 
    146     private final static QName _CTTrPrBaseCantSplit_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "cantSplit"); 
    147     private final static QName _CTTrPrBaseHidden_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "hidden"); 
    148     private final static QName _CTTrPrBaseTrHeight_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "trHeight"); 
    149     private final static QName _CTTrPrBaseTblCellSpacing_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tblCellSpacing"); 
    150     private final static QName _CTTrPrBaseGridAfter_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "gridAfter"); 
    151     private final static QName _CTTrPrBaseWAfter_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "wAfter"); 
    152     private final static QName _CTTrPrBaseWBefore_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "wBefore"); 
    153     private final static QName _CTTrPrBaseDivId_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "divId"); 
    154     private final static QName _CTTrPrBaseCnfStyle_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "cnfStyle"); 
    155     private final static QName _SectPrHeaderReference_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "headerReference"); 
    156     private final static QName _SectPrFooterReference_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "footerReference"); 
    157123    private final static QName _RMonthShort_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "monthShort"); 
    158124    private final static QName _RYearLong_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "yearLong"); 
     125    private final static QName _RFootnoteReference_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "footnoteReference"); 
    159126    private final static QName _RPgNum_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "pgNum"); 
    160     private final static QName _RFootnoteReference_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "footnoteReference"); 
    161127    private final static QName _REndnoteRef_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "endnoteRef"); 
    162128    private final static QName _RSoftHyphen_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "softHyphen"); 
     
    185151    private final static QName _RPtab_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "ptab"); 
    186152    private final static QName _RNoBreakHyphen_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "noBreakHyphen"); 
     153    private final static QName _CTSdtContentCellTc_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tc"); 
     154    private final static QName _SdtPrRPr_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "rPr"); 
     155    private final static QName _SdtPrText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "text"); 
     156    private final static QName _SdtPrCitation_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "citation"); 
     157    private final static QName _SdtPrDocPartObj_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "docPartObj"); 
     158    private final static QName _SdtPrPlaceholder_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "placeholder"); 
     159    private final static QName _SdtPrShowingPlcHdr_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "showingPlcHdr"); 
     160    private final static QName _SdtPrAlias_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "alias"); 
     161    private final static QName _SdtPrLock_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "lock"); 
     162    private final static QName _SdtPrTemporary_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "temporary"); 
     163    private final static QName _SdtPrBibliography_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "bibliography"); 
     164    private final static QName _SdtPrComboBox_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "comboBox"); 
     165    private final static QName _SdtPrDate_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "date"); 
     166    private final static QName _SdtPrRichText_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "richText"); 
     167    private final static QName _SdtPrDropDownList_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "dropDownList"); 
     168    private final static QName _SdtPrPicture_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "picture"); 
     169    private final static QName _SdtPrEquation_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "equation"); 
     170    private final static QName _SdtPrDataBinding_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "dataBinding"); 
     171    private final static QName _SdtPrDocPartList_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "docPartList"); 
     172    private final static QName _SdtPrGroup_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "group"); 
     173    private final static QName _CTTrPrBaseTblHeader_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tblHeader"); 
     174    private final static QName _CTTrPrBaseJc_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "jc"); 
     175    private final static QName _CTTrPrBaseCantSplit_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "cantSplit"); 
     176    private final static QName _CTTrPrBaseGridBefore_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "gridBefore"); 
     177    private final static QName _CTTrPrBaseHidden_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "hidden"); 
     178    private final static QName _CTTrPrBaseTrHeight_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "trHeight"); 
     179    private final static QName _CTTrPrBaseTblCellSpacing_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "tblCellSpacing"); 
     180    private final static QName _CTTrPrBaseGridAfter_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "gridAfter"); 
     181    private final static QName _CTTrPrBaseWAfter_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "wAfter"); 
     182    private final static QName _CTTrPrBaseDivId_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "divId"); 
     183    private final static QName _CTTrPrBaseWBefore_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "wBefore"); 
     184    private final static QName _CTTrPrBaseCnfStyle_QNAME = new QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "cnfStyle"); 
    187185 
    188186    /** 
     
    191189     */ 
    192190    public ObjectFactory() { 
     191    } 
     192 
     193    /** 
     194     * Create an instance of {@link CTRubyContent } 
     195     *  
     196     */ 
     197    public CTRubyContent createCTRubyContent() { 
     198        return new CTRubyContent(); 
     199    } 
     200 
     201    /** 
     202     * Create an instance of {@link TcPrInner.HMerge } 
     203     *  
     204     */ 
     205    public TcPrInner.HMerge createTcPrInnerHMerge() { 
     206        return new TcPrInner.HMerge(); 
     207    } 
     208 
     209    /** 
     210     * Create an instance of {@link Fonts.Font } 
     211     *  
     212     */ 
     213    public Fonts.Font createFontsFont() { 
     214        return new Fonts.Font(); 
     215    } 
     216 
     217    /** 
     218     * Create an instance of {@link CTFFHelpText } 
     219     *  
     220     */ 
     221    public CTFFHelpText createCTFFHelpText() { 
     222        return new CTFFHelpText(); 
     223    } 
     224 
     225    /** 
     226     * Create an instance of {@link CTSettings.ForceUpgrade } 
     227     *  
     228     */ 
     229    public CTSettings.ForceUpgrade createCTSettingsForceUpgrade() { 
     230        return new CTSettings.ForceUpgrade(); 
     231    } 
     232 
     233    /** 
     234     * Create an instance of {@link R.PgNum } 
     235     *  
     236     */ 
     237    public R.PgNum createRPgNum() { 
     238        return new R.PgNum(); 
     239    } 
     240 
     241    /** 
     242     * Create an instance of {@link CTBookmarkRange } 
     243     *  
     244     */ 
     245    public CTBookmarkRange createCTBookmarkRange() { 
     246        return new CTBookmarkRange(); 
     247    } 
     248 
     249    /** 
     250     * Create an instance of {@link Lvl.LvlRestart } 
     251     *  
     252     */ 
     253    public Lvl.LvlRestart createLvlLvlRestart() { 
     254        return new Lvl.LvlRestart(); 
     255    } 
     256 
     257    /** 
     258     * Create an instance of {@link RangePermissionStart } 
     259     *  
     260     */ 
     261    public RangePermissionStart createRangePermissionStart() { 
     262        return new RangePermissionStart(); 
     263    } 
     264 
     265    /** 
     266     * Create an instance of {@link CTWebSettings.PixelsPerInch } 
     267     *  
     268     */ 
     269    public CTWebSettings.PixelsPerInch createCTWebSettingsPixelsPerInch() { 
     270        return new CTWebSettings.PixelsPerInch(); 
     271    } 
     272 
     273    /** 
     274     * Create an instance of {@link CTSdtEndPr } 
     275     *  
     276     */ 
     277    public CTSdtEndPr createCTSdtEndPr() { 
     278        return new CTSdtEndPr(); 
     279    } 
     280 
     281    /** 
     282     * Create an instance of {@link CTDocParts } 
     283     *  
     284     */ 
     285    public CTDocParts createCTDocParts() { 
     286        return new CTDocParts(); 
     287    } 
     288 
     289    /** 
     290     * Create an instance of {@link CTSdtCell } 
     291     *  
     292     */ 
     293    public CTSdtCell createCTSdtCell() { 
     294        return new CTSdtCell(); 
     295    } 
     296 
     297    /** 
     298     * Create an instance of {@link Numbering.AbstractNum.StyleLink } 
     299     *  
     300     */ 
     301    public Numbering.AbstractNum.StyleLink createNumberingAbstractNumStyleLink() { 
     302        return new Numbering.AbstractNum.StyleLink(); 
     303    } 
     304 
     305    /** 
     306     * Create an instance of {@link Numbering.Num.LvlOverride.StartOverride } 
     307     *  
     308     */ 
     309    public Numbering.Num.LvlOverride.StartOverride createNumberingNumLvlOverrideStartOverride() { 
     310        return new Numbering.Num.LvlOverride.StartOverride(); 
     311    } 
     312 
     313    /** 
     314     * Create an instance of {@link CTTrackChangeRange } 
     315     *  
     316     */ 
     317    public CTTrackChangeRange createCTTrackChangeRange() { 
     318        return new CTTrackChangeRange(); 
     319    } 
     320 
     321    /** 
     322     * Create an instance of {@link CTFramePr } 
     323     *  
     324     */ 
     325    public CTFramePr createCTFramePr() { 
     326        return new CTFramePr(); 
     327    } 
     328 
     329    /** 
     330     * Create an instance of {@link CTSettings } 
     331     *  
     332     */ 
     333    public CTSettings createCTSettings() { 
     334        return new CTSettings(); 
     335    } 
     336 
     337    /** 
     338     * Create an instance of {@link CTSettings.ConsecutiveHyphenLimit } 
     339     *  
     340     */ 
     341    public CTSettings.ConsecutiveHyphenLimit createCTSettingsConsecutiveHyphenLimit() { 
     342        return new CTSettings.ConsecutiveHyphenLimit(); 
     343    } 
     344 
     345    /** 
     346     * Create an instance of {@link CTMarkup } 
     347     *  
     348     */ 
     349    public CTMarkup createCTMarkup() { 
     350        return new CTMarkup(); 
     351    } 
     352 
     353    /** 
     354     * Create an instance of {@link CTVerticalJc } 
     355     *  
     356     */ 
     357    public CTVerticalJc createCTVerticalJc() { 
     358        return new CTVerticalJc(); 
     359    } 
     360 
     361    /** 
     362     * Create an instance of {@link SdtPr } 
     363     *  
     364     */ 
     365    public SdtPr createSdtPr() { 
     366        return new SdtPr(); 
     367    } 
     368 
     369    /** 
     370     * Create an instance of {@link GlossaryDocument } 
     371     *  
     372     */ 
     373    public GlossaryDocument createGlossaryDocument() { 
     374        return new GlossaryDocument(); 
     375    } 
     376 
     377    /** 
     378     * Create an instance of {@link CTGuid } 
     379     *  
     380     */ 
     381    public CTGuid createCTGuid() { 
     382        return new CTGuid(); 
     383    } 
     384 
     385    /** 
     386     * Create an instance of {@link DelText } 
     387     *  
     388     */ 
     389    public DelText createDelText() { 
     390        return new DelText(); 
     391    } 
     392 
     393    /** 
     394     * Create an instance of {@link Tbl } 
     395     *  
     396     */ 
     397    public Tbl createTbl() { 
     398        return new Tbl(); 
     399    } 
     400 
     401    /** 
     402     * Create an instance of {@link TblGridCol } 
     403     *  
     404     */ 
     405    public TblGridCol createTblGridCol() { 
     406        return new TblGridCol(); 
     407    } 
     408 
     409    /** 
     410     * Create an instance of {@link RFonts } 
     411     *  
     412     */ 
     413    public RFonts createRFonts() { 
     414        return new RFonts(); 
     415    } 
     416 
     417    /** 
     418     * Create an instance of {@link Body } 
     419     *  
     420     */ 
     421    public Body createBody() { 
     422        return new Body(); 
     423    } 
     424 
     425    /** 
     426     * Create an instance of {@link CTTrPrBase.GridAfter } 
     427     *  
     428     */ 
     429    public CTTrPrBase.GridAfter createCTTrPrBaseGridAfter() { 
     430        return new CTTrPrBase.GridAfter(); 
     431    } 
     432 
     433    /** 
     434     * Create an instance of {@link CTFrameset } 
     435     *  
     436     */ 
     437    public CTFrameset createCTFrameset() { 
     438        return new CTFrameset(); 
     439    } 
     440 
     441    /** 
     442     * Create an instance of {@link CTCaptions } 
     443     *  
     444     */ 
     445    public CTCaptions createCTCaptions() { 
     446        return new CTCaptions(); 
     447    } 
     448 
     449    /** 
     450     * Create an instance of {@link SdtPr.Bibliography } 
     451     *  
     452     */ 
     453    public SdtPr.Bibliography createSdtPrBibliography() { 
     454        return new SdtPr.Bibliography(); 
     455    } 
     456 
     457    /** 
     458     * Create an instance of {@link CTFFDDList.Result } 
     459     *  
     460     */ 
     461    public CTFFDDList.Result createCTFFDDListResult() { 
     462        return new CTFFDDList.Result(); 
     463    } 
     464 
     465    /** 
     466     * Create an instance of {@link TrPr } 
     467     *  
     468     */ 
     469    public TrPr createTrPr() { 
     470        return new TrPr(); 
     471    } 
     472 
     473    /** 
     474     * Create an instance of {@link CTSdtContentCell } 
     475     *  
     476     */ 
     477    public CTSdtContentCell createCTSdtContentCell() { 
     478        return new CTSdtContentCell(); 
     479    } 
     480 
     481    /** 
     482     * Create an instance of {@link CTSdtDate.DateFormat } 
     483     *  
     484     */ 
     485    public CTSdtDate.DateFormat createCTSdtDateDateFormat() { 
     486        return new CTSdtDate.DateFormat(); 
     487    } 
     488 
     489    /** 
     490     * Create an instance of {@link CTCompat } 
     491     *  
     492     */ 
     493    public CTCompat createCTCompat() { 
     494        return new CTCompat(); 
     495    } 
     496 
     497    /** 
     498     * Create an instance of {@link R.AnnotationRef } 
     499     *  
     500     */ 
     501    public R.AnnotationRef createRAnnotationRef() { 
     502        return new R.AnnotationRef(); 
     503    } 
     504 
     505    /** 
     506     * Create an instance of {@link Comments } 
     507     *  
     508     */ 
     509    public Comments createComments() { 
     510        return new Comments(); 
     511    } 
     512 
     513    /** 
     514     * Create an instance of {@link SectPr.PgMar } 
     515     *  
     516     */ 
     517    public SectPr.PgMar createSectPrPgMar() { 
     518        return new SectPr.PgMar(); 
     519    } 
     520 
     521    /** 
     522     * Create an instance of {@link CTView } 
     523     *  
     524     */ 
     525    public CTView createCTView() { 
     526        return new CTView(); 
     527    } 
     528 
     529    /** 
     530     * Create an instance of {@link CTPageNumber } 
     531     *  
     532     */ 
     533    public CTPageNumber createCTPageNumber() { 
     534        return new CTPageNumber(); 
     535    } 
     536 
     537    /** 
     538     * Create an instance of {@link Tc } 
     539     *  
     540     */ 
     541    public Tc createTc() { 
     542        return new Tc(); 
     543    } 
     544 
     545    /** 
     546     * Create an instance of {@link CTMailMerge } 
     547     *  
     548     */ 
     549    public CTMailMerge createCTMailMerge() { 
     550        return new CTMailMerge(); 
     551    } 
     552 
     553    /** 
     554     * Create an instance of {@link CTDivs } 
     555     *  
     556     */ 
     557    public CTDivs createCTDivs() { 
     558        return new CTDivs(); 
     559    } 
     560 
     561    /** 
     562     * Create an instance of {@link Lvl.Start } 
     563     *  
     564     */ 
     565    public Lvl.Start createLvlStart() { 
     566        return new Lvl.Start(); 
     567    } 
     568 
     569    /** 
     570     * Create an instance of {@link CTMailMergeDest } 
     571     *  
     572     */ 
     573    public CTMailMergeDest createCTMailMergeDest() { 
     574        return new CTMailMergeDest(); 
     575    } 
     576 
     577    /** 
     578     * Create an instance of {@link RunTrackChange } 
     579     *  
     580     */ 
     581    public RunTrackChange createRunTrackChange() { 
     582        return new RunTrackChange(); 
     583    } 
     584 
     585    /** 
     586     * Create an instance of {@link CTTrPrBase.GridBefore } 
     587     *  
     588     */ 
     589    public CTTrPrBase.GridBefore createCTTrPrBaseGridBefore() { 
     590        return new CTTrPrBase.GridBefore(); 
     591    } 
     592 
     593    /** 
     594     * Create an instance of {@link CTFFDDList.ListEntry } 
     595     *  
     596     */ 
     597    public CTFFDDList.ListEntry createCTFFDDListListEntry() { 
     598        return new CTFFDDList.ListEntry(); 
     599    } 
     600 
     601    /** 
     602     * Create an instance of {@link CTPictureBase } 
     603     *  
     604     */ 
     605    public CTPictureBase createCTPictureBase() { 
     606        return new CTPictureBase(); 
     607    } 
     608 
     609    /** 
     610     * Create an instance of {@link CTDivBdr } 
     611     *  
     612     */ 
     613    public CTDivBdr createCTDivBdr() { 
     614        return new CTDivBdr(); 
     615    } 
     616 
     617    /** 
     618     * Create an instance of {@link CTFtnPos } 
     619     *  
     620     */ 
     621    public CTFtnPos createCTFtnPos() { 
     622        return new CTFtnPos(); 
     623    } 
     624 
     625    /** 
     626     * Create an instance of {@link CTDiv } 
     627     *  
     628     */ 
     629    public CTDiv createCTDiv() { 
     630        return new CTDiv(); 
     631    } 
     632 
     633    /** 
     634     * Create an instance of {@link TblWidth } 
     635     *  
     636     */ 
     637    public TblWidth createTblWidth() { 
     638        return new TblWidth(); 
     639    } 
     640 
     641    /** 
     642     * Create an instance of {@link CTMailMerge.CheckErrors } 
     643     *  
     644     */ 
     645    public CTMailMerge.CheckErrors createCTMailMergeCheckErrors() { 
     646        return new CTMailMerge.CheckErrors(); 
     647    } 
     648 
     649    /** 
     650     * Create an instance of {@link CTTrackChange } 
     651     *  
     652     */ 
     653    public CTTrackChange createCTTrackChange() { 
     654        return new CTTrackChange(); 
     655    } 
     656 
     657    /** 
     658     * Create an instance of {@link FontPanose } 
     659     *  
     660     */ 
     661    public FontPanose createFontPanose() { 
     662        return new FontPanose(); 
     663    } 
     664 
     665    /** 
     666     * Create an instance of {@link CTRPrChange.RPr } 
     667     *  
     668     */ 
     669    public CTRPrChange.RPr createCTRPrChangeRPr() { 
     670        return new CTRPrChange.RPr(); 
     671    } 
     672 
     673    /** 
     674     * Create an instance of {@link U } 
     675     *  
     676     */ 
     677    public U createU() { 
     678        return new U(); 
     679    } 
     680 
     681    /** 
     682     * Create an instance of {@link CTDocType } 
     683     *  
     684     */ 
     685    public CTDocType createCTDocType() { 
     686        return new CTDocType(); 
     687    } 
     688 
     689    /** 
     690     * Create an instance of {@link Numbering.NumPicBullet } 
     691     *  
     692     */ 
     693    public Numbering.NumPicBullet createNumberingNumPicBullet() { 
     694        return new Numbering.NumPicBullet(); 
     695    } 
     696 
     697    /** 
     698     * Create an instance of {@link CTOdso.Udl } 
     699     *  
     700     */ 
     701    public CTOdso.Udl createCTOdsoUdl() { 
     702        return new CTOdso.Udl(); 
     703    } 
     704 
     705    /** 
     706     * Create an instance of {@link CTPlaceholder.DocPart } 
     707     *  
     708     */ 
     709    public CTPlaceholder.DocPart createCTPlaceholderDocPart() { 
     710        return new CTPlaceholder.DocPart(); 
     711    } 
     712 
     713    /** 
     714     * Create an instance of {@link CTBackground } 
     715     *  
     716     */ 
     717    public CTBackground createCTBackground() { 
     718        return new CTBackground(); 
     719    } 
     720 
     721    /** 
     722     * Create an instance of {@link CTCharacterSpacing } 
     723     *  
     724     */ 
     725    public CTCharacterSpacing createCTCharacterSpacing() { 
     726        return new CTCharacterSpacing(); 
     727    } 
     728 
     729    /** 
     730     * Create an instance of {@link CTOdsoFieldMapData.Name } 
     731     *  
     732     */ 
     733    public CTOdsoFieldMapData.Name createCTOdsoFieldMapDataName() { 
     734        return new CTOdsoFieldMapData.Name(); 
     735    } 
     736 
     737    /** 
     738     * Create an instance of {@link CTSmartTagType } 
     739     *  
     740     */ 
     741    public CTSmartTagType createCTSmartTagType() { 
     742        return new CTSmartTagType(); 
     743    } 
     744 
     745    /** 
     746     * Create an instance of {@link CTCaption } 
     747     *  
     748     */ 
     749    public CTCaption createCTCaption() { 
     750        return new CTCaption(); 
     751    } 
     752 
     753    /** 
     754     * Create an instance of {@link CTHeight } 
     755     *  
     756     */ 
     757    public CTHeight createCTHeight() { 
     758        return new CTHeight(); 
     759    } 
     760 
     761    /** 
     762     * Create an instance of {@link CTOdsoFieldMapData.Column } 
     763     *  
     764     */ 
     765    public CTOdsoFieldMapData.Column createCTOdsoFieldMapDataColumn() { 
     766        return new CTOdsoFieldMapData.Column(); 
     767    } 
     768 
     769    /** 
     770     * Create an instance of {@link CTSdtDate } 
     771     *  
     772     */ 
     773    public CTSdtDate createCTSdtDate() { 
     774        return new CTSdtDate(); 
     775    } 
     776 
     777    /** 
     778     * Create an instance of {@link R.Ptab } 
     779     *  
     780     */ 
     781    public R.Ptab createRPtab() { 
     782        return new R.Ptab(); 
     783    } 
     784 
     785    /** 
     786     * Create an instance of {@link CTSdtComboBox } 
     787     *  
     788     */ 
     789    public CTSdtComboBox createCTSdtComboBox() { 
     790        return new CTSdtComboBox(); 
     791    } 
     792 
     793    /** 
     794     * Create an instance of {@link SdtBlock } 
     795     *  
     796     */ 
     797    public SdtBlock createSdtBlock() { 
     798        return new SdtBlock(); 
     799    } 
     800 
     801    /** 
     802     * Create an instance of {@link Styles.LatentStyles.LsdException } 
     803     *  
     804     */ 
     805    public Styles.LatentStyles.LsdException createStylesLatentStylesLsdException() { 
     806        return new Styles.LatentStyles.LsdException(); 
     807    } 
     808 
     809    /** 
     810     * Create an instance of {@link RunDel } 
     811     *  
     812     */ 
     813    public RunDel createRunDel() { 
     814        return new RunDel(); 
     815    } 
     816 
     817    /** 
     818     * Create an instance of {@link org.docx4j.wml.Style.Link } 
     819     *  
     820     */ 
     821    public org.docx4j.wml.Style.Link createStyleLink() { 
     822        return new org.docx4j.wml.Style.Link(); 
     823    } 
     824 
     825    /** 
     826     * Create an instance of {@link HpsMeasure } 
     827     *  
     828     */ 
     829    public HpsMeasure createHpsMeasure() { 
     830        return new HpsMeasure(); 
     831    } 
     832 
     833    /** 
     834     * Create an instance of {@link CTFFData } 
     835     *  
     836     */ 
     837    public CTFFData createCTFFData() { 
     838        return new CTFFData(); 
     839    } 
     840 
     841    /** 
     842     * Create an instance of {@link Numbering.NumIdMacAtCleanup } 
     843     *  
     844     */ 
     845    public Numbering.NumIdMacAtCleanup createNumberingNumIdMacAtCleanup() { 
     846        return new Numbering.NumIdMacAtCleanup(); 
     847    } 
     848 
     849    /** 
     850     * Create an instance of {@link Lvl } 
     851     *  
     852     */ 
     853    public Lvl createLvl() { 
     854        return new Lvl(); 
     855    } 
     856 
     857    /** 
     858     * Create an instance of {@link CTColumn } 
     859     *  
     860     */ 
     861    public CTColumn createCTColumn() { 
     862        return new CTColumn(); 
     863    } 
     864 
     865    /** 
     866     * Create an instance of {@link ProofErr } 
     867     *  
     868     */ 
     869    public ProofErr createProofErr() { 
     870        return new ProofErr(); 
     871    } 
     872 
     873    /** 
     874     * Create an instance of {@link CTSimpleField } 
     875     *  
     876     */ 
     877    public CTSimpleField createCTSimpleField() { 
     878        return new CTSimpleField(); 
     879    } 
     880 
     881    /** 
     882     * Create an instance of {@link CTDocPartBehavior } 
     883     *  
     884     */ 
     885    public CTDocPartBehavior createCTDocPartBehavior() { 
     886        return new CTDocPartBehavior(); 
     887    } 
     888 
     889    /** 
     890     * Create an instance of {@link CTEdnProps.NumStart } 
     891     *  
     892     */ 
     893    public CTEdnProps.NumStart createCTEdnPropsNumStart() { 
     894        return new CTEdnProps.NumStart(); 
     895    } 
     896 
     897    /** 
     898     * Create an instance of {@link CTCustomXmlRow } 
     899     *  
     900     */ 
     901    public CTCustomXmlRow createCTCustomXmlRow() { 
     902        return new CTCustomXmlRow(); 
     903    } 
     904 
     905    /** 
     906     * Create an instance of {@link Highlight } 
     907     *  
     908     */ 
     909    public Highlight createHighlight() { 
     910        return new Highlight(); 
     911    } 
     912 
     913    /** 
     914     * Create an instance of {@link CTRecipientData.Column } 
     915     *  
     916     */ 
     917    public CTRecipientData.Column createCTRecipientDataColumn() { 
     918        return new CTRecipientData.Column(); 
     919    } 
     920 
     921    /** 
     922     * Create an instance of {@link CTAutoCaptions } 
     923     *  
     924     */ 
     925    public CTAutoCaptions createCTAutoCaptions() { 
     926        return new CTAutoCaptions(); 
     927    } 
     928 
     929    /** 
     930     * Create an instance of {@link CTTblPrBase.TblStyleColBandSize } 
     931     *  
     932     */ 
     933    public CTTblPrBase.TblStyleColBandSize createCTTblPrBaseTblStyleColBandSize() { 
     934        return new CTTblPrBase.TblStyleColBandSize(); 
     935    } 
     936 
     937    /** 
     938     * Create an instance of {@link R.CommentReference } 
     939     *  
     940     */ 
     941    public R.CommentReference createRCommentReference() { 
     942        return new R.CommentReference(); 
     943    } 
     944 
     945    /** 
     946     * Create an instance of {@link CTFFTextInput.MaxLength } 
     947     *  
     948     */ 
     949    public CTFFTextInput.MaxLength createCTFFTextInputMaxLength() { 
     950        return new CTFFTextInput.MaxLength(); 
     951    } 
     952 
     953    /** 
     954     * Create an instance of {@link TblPr } 
     955     *  
     956     */ 
     957    public TblPr createTblPr() { 
     958        return new TblPr(); 
     959    } 
     960 
     961    /** 
     962     * Create an instance of {@link Numbering.Num.LvlOverride } 
     963     *  
     964     */ 
     965    public Numbering.Num.LvlOverride createNumberingNumLvlOverride() { 
     966        return new Numbering.Num.LvlOverride(); 
     967    } 
     968 
     969    /** 
     970     * Create an instance of {@link CTEastAsianLayout } 
     971     *  
     972     */ 
     973    public CTEastAsianLayout createCTEastAsianLayout() { 
     974        return new CTEastAsianLayout(); 
     975    } 
     976 
     977    /** 
     978     * Create an instance of {@link CTFramesetSplitbar } 
     979     *  
     980     */ 
     981    public CTFramesetSplitbar createCTFramesetSplitbar() { 
     982        return new CTFramesetSplitbar(); 
     983    } 
     984 
     985    /** 
     986     * Create an instance of {@link FontFamily } 
     987     *  
     988     */ 
     989    public FontFamily createFontFamily() { 
     990        return new FontFamily(); 
     991    } 
     992 
     993    /** 
     994     * Create an instance of {@link PPrBase.TextAlignment } 
     995     *  
     996     */ 
     997    public PPrBase.TextAlignment createPPrBaseTextAlignment() { 
     998        return new PPrBase.TextAlignment(); 
     999    } 
     1000 
     1001    /** 
     1002     * Create an instance of {@link org.docx4j.wml.Style.Next } 
     1003     *  
     1004     */ 
     1005    public org.docx4j.wml.Style.Next createStyleNext() { 
     1006        return new org.docx4j.wml.Style.Next(); 
     1007    } 
     1008 
     1009    /** 
     1010     * Create an instance of {@link Pict } 
     1011     *  
     1012     */ 
     1013    public Pict createPict() { 
     1014        return new Pict(); 
     1015    } 
     1016 
     1017    /** 
     1018     * Create an instance of {@link CTMailMerge.ActiveRecord } 
     1019     *  
     1020     */ 
     1021    public CTMailMerge.ActiveRecord createCTMailMergeActiveRecord() { 
     1022        return new CTMailMerge.ActiveRecord(); 
     1023    } 
     1024 
     1025    /** 
     1026     * Create an instance of {@link Jc } 
     1027     *  
     1028     */ 
     1029    public Jc createJc() { 
     1030        return new Jc(); 
     1031    } 
     1032 
     1033    /** 
     1034     * Create an instance of {@link CTSaveThroughXslt } 
     1035     *  
     1036     */ 
     1037    public CTSaveThroughXslt createCTSaveThroughXslt() { 
     1038        return new CTSaveThroughXslt(); 
     1039    } 
     1040 
     1041    /** 
     1042     * Create an instance of {@link CTTblCellMar } 
     1043     *  
     1044     */ 
     1045    public CTTblCellMar createCTTblCellMar() { 
     1046        return new CTTblCellMar(); 
     1047    } 
     1048 
     1049    /** 
     1050     * Create an instance of {@link R } 
     1051     *  
     1052     */ 
     1053    public R createR() { 
     1054        return new R(); 
     1055    } 
     1056 
     1057    /** 
     1058     * Create an instance of {@link CTEdnDocProps } 
     1059     *  
     1060     */ 
     1061    public CTEdnDocProps createCTEdnDocProps() { 
     1062        return new CTEdnDocProps(); 
     1063    } 
     1064 
     1065    /** 
     1066     * Create an instance of {@link CTSdtText } 
     1067     *  
     1068     */ 
     1069    public CTSdtText createCTSdtText() { 
     1070        return new CTSdtText(); 
     1071    } 
     1072 
     1073    /** 
     1074     * Create an instance of {@link CTMacroName } 
     1075     *  
     1076     */ 
     1077    public CTMacroName createCTMacroName() { 
     1078        return new CTMacroName(); 
     1079    } 
     1080 
     1081    /** 
     1082     * Create an instance of {@link CTMailMergeDocType } 
     1083     *  
     1084     */ 
     1085    public CTMailMergeDocType createCTMailMergeDocType() { 
     1086        return new CTMailMergeDocType(); 
     1087    } 
     1088 
     1089    /** 
     1090     * Create an instance of {@link CTCustomXmlCell } 
     1091     *  
     1092     */ 
     1093    public CTCustomXmlCell createCTCustomXmlCell() { 
     1094        return new CTCustomXmlCell(); 
     1095    } 
     1096 
     1097    /** 
     1098     * Create an instance of {@link CommentRangeStart } 
     1099     *  
     1100     */ 
     1101    public CommentRangeStart createCommentRangeStart() { 
     1102        return new CommentRangeStart(); 
     1103    } 
     1104 
     1105    /** 
     1106     * Create an instance of {@link CTFFCheckBox } 
     1107     *  
     1108     */ 
     1109    public CTFFCheckBox createCTFFCheckBox() { 
     1110        return new CTFFCheckBox(); 
     1111    } 
     1112 
     1113    /** 
     1114     * Create an instance of {@link SectPr.Type } 
     1115     *  
     1116     */ 
     1117    public SectPr.Type createSectPrType() { 
     1118        return new SectPr.Type(); 
     1119    } 
     1120 
     1121    /** 
     1122     * Create an instance of {@link R.SoftHyphen } 
     1123     *  
     1124     */ 
     1125    public R.SoftHyphen createRSoftHyphen() { 
     1126        return new R.SoftHyphen(); 
     1127    } 
     1128 
     1129    /** 
     1130     * Create an instance of {@link CTSectPrChange } 
     1131     *  
     1132     */ 
     1133    public CTSectPrChange createCTSectPrChange() { 
     1134        return new CTSectPrChange(); 
     1135    } 
     1136 
     1137    /** 
     1138     * Create an instance of {@link CTDocPartCategory } 
     1139     *  
     1140     */ 
     1141    public CTDocPartCategory createCTDocPartCategory() { 
     1142        return new CTDocPartCategory(); 
     1143    } 
     1144 
     1145    /** 
     1146     * Create an instance of {@link CTAltChunk } 
     1147     *  
     1148     */ 
     1149    public CTAltChunk createCTAltChunk() { 
     1150        return new CTAltChunk(); 
     1151    } 
     1152 
     1153    /** 
     1154     * Create an instance of {@link R.FootnoteRef } 
     1155     *  
     1156     */ 
     1157    public R.FootnoteRef createRFootnoteRef() { 
     1158        return new R.FootnoteRef(); 
     1159    } 
     1160 
     1161    /** 
     1162     * Create an instance of {@link R.DayLong } 
     1163     *  
     1164     */ 
     1165    public R.DayLong createRDayLong() { 
     1166        return new R.DayLong(); 
     1167    } 
     1168 
     1169    /** 
     1170     * Create an instance of {@link CTRPrChange } 
     1171     *  
     1172     */ 
     1173    public CTRPrChange createCTRPrChange() { 
     1174        return new CTRPrChange(); 
     1175    } 
     1176 
     1177    /** 
     1178     * Create an instance of {@link CTSettings.DecimalSymbol } 
     1179     *  
     1180     */ 
     1181    public CTSettings.DecimalSymbol createCTSettingsDecimalSymbol() { 
     1182        return new CTSettings.DecimalSymbol(); 
     1183    } 
     1184 
     1185    /** 
     1186     * Create an instance of {@link CTObject } 
     1187     *  
     1188     */ 
     1189    public CTObject createCTObject() { 
     1190        return new CTObject(); 
     1191    } 
     1192 
     1193    /** 
     1194     * Create an instance of {@link CTMailMergeOdsoFMDFieldType } 
     1195     *  
     1196     */ 
     1197    public CTMailMergeOdsoFMDFieldType createCTMailMergeOdsoFMDFieldType() { 
     1198        return new CTMailMergeOdsoFMDFieldType(); 
     1199    } 
     1200 
     1201    /** 
     1202     * Create an instance of {@link ParaRPrChange } 
     1203     *  
     1204     */ 
     1205    public ParaRPrChange createParaRPrChange() { 
     1206        return new ParaRPrChange(); 
     1207    } 
     1208 
     1209    /** 
     1210     * Create an instance of {@link CTMailMerge.Query } 
     1211     *  
     1212     */ 
     1213    public CTMailMerge.Query createCTMailMergeQuery() { 
     1214        return new CTMailMerge.Query(); 
     1215    } 
     1216 
     1217    /** 
     1218     * Create an instance of {@link CTFFDDList } 
     1219     *  
     1220     */ 
     1221    public CTFFDDList createCTFFDDList() { 
     1222        return new CTFFDDList(); 
     1223    } 
     1224 
     1225    /** 
     1226     * Create an instance of {@link RunIns } 
     1227     *  
     1228     */ 
     1229    public RunIns createRunIns() { 
     1230        return new RunIns(); 
     1231    } 
     1232 
     1233    /** 
     1234     * Create an instance of {@link BooleanDefaultFalse } 
     1235     *  
     1236     */ 
     1237    public BooleanDefaultFalse createBooleanDefaultFalse() { 
     1238        return new BooleanDefaultFalse(); 
     1239    } 
     1240 
     1241    /** 
     1242     * Create an instance of {@link CTCustomXmlPr } 
     1243     *  
     1244     */ 
     1245    public CTCustomXmlPr createCTCustomXmlPr() { 
     1246        return new CTCustomXmlPr(); 
     1247    } 
     1248 
     1249    /** 
     1250     * Create an instance of {@link CTNumRestart } 
     1251     *  
     1252     */ 
     1253    public CTNumRestart createCTNumRestart() { 
     1254        return new CTNumRestart(); 
     1255    } 
     1256 
     1257    /** 
     1258     * Create an instance of {@link CTOdso.ColDelim } 
     1259     *  
     1260     */ 
     1261    public CTOdso.ColDelim createCTOdsoColDelim() { 
     1262        return new CTOdso.ColDelim(); 
     1263    } 
     1264 
     1265    /** 
     1266     * Create an instance of {@link FldChar } 
     1267     *  
     1268     */ 
     1269    public FldChar createFldChar() { 
     1270        return new FldChar(); 
     1271    } 
     1272 
     1273    /** 
     1274     * Create an instance of {@link CTTcPrChange } 
     1275     *  
     1276     */ 
     1277    public CTTcPrChange createCTTcPrChange() { 
     1278        return new CTTcPrChange(); 
     1279    } 
     1280 
     1281    /** 
     1282     * Create an instance of {@link CTFtnEdnSepRef } 
     1283     *  
     1284     */ 
     1285    public CTFtnEdnSepRef createCTFtnEdnSepRef() { 
     1286        return new CTFtnEdnSepRef(); 
     1287    } 
     1288 
     1289    /** 
     1290     * Create an instance of {@link CTDocPartTypes } 
     1291     *  
     1292     */ 
     1293    public CTDocPartTypes createCTDocPartTypes() { 
     1294        return new CTDocPartTypes(); 
     1295    } 
     1296 
     1297    /** 
     1298     * Create an instance of {@link R.ContinuationSeparator } 
     1299     *  
     1300     */ 
     1301    public R.ContinuationSeparator createRContinuationSeparator() { 
     1302        return new R.ContinuationSeparator(); 
     1303    } 
     1304 
     1305    /** 
     1306     * Create an instance of {@link CTTblPrBase.TblStyleRowBandSize } 
     1307     *  
     1308     */ 
     1309    public CTTblPrBase.TblStyleRowBandSize createCTTblPrBaseTblStyleRowBandSize() { 
     1310        return new CTTblPrBase.TblStyleRowBandSize(); 
     1311    } 
     1312 
     1313    /** 
     1314     * Create an instance of {@link CTLanguage } 
     1315     *  
     1316     */ 
     1317    public CTLanguage createCTLanguage() { 
     1318        return new CTLanguage(); 
     1319    } 
     1320 
     1321    /** 
     1322     * Create an instance of {@link CTOdso.Table } 
     1323     *  
     1324     */ 
     1325    public CTOdso.Table createCTOdsoTable() { 
     1326        return new CTOdso.Table(); 
     1327    } 
     1328 
     1329    /** 
     1330     * Create an instance of {@link SdtPr.RichText } 
     1331     *  
     1332     */ 
     1333    public SdtPr.RichText createSdtPrRichText() { 
     1334        return new SdtPr.RichText(); 
     1335    } 
     1336 
     1337    /** 
     1338     * Create an instance of {@link CTPixelsMeasure } 
     1339     *  
     1340     */ 
     1341    public CTPixelsMeasure createCTPixelsMeasure() { 
     1342        return new CTPixelsMeasure(); 
     1343    } 
     1344 
     1345    /** 
     1346     * Create an instance of {@link CTDocVars } 
     1347     *  
     1348     */ 
     1349    public CTDocVars createCTDocVars() { 
     1350        return new CTDocVars(); 
     1351    } 
     1352 
     1353    /** 
     1354     * Create an instance of {@link CTSdtContentRun } 
     1355     *  
     1356     */ 
     1357    public CTSdtContentRun createCTSdtContentRun() { 
     1358        return new CTSdtContentRun(); 
     1359    } 
     1360 
     1361    /** 
     1362     * Create an instance of {@link CTFtnProps } 
     1363     *  
     1364     */ 
     1365    public CTFtnProps createCTFtnProps() { 
     1366        return new CTFtnProps(); 
     1367    } 
     1368 
     1369    /** 
     1370     * Create an instance of {@link org.docx4j.wml.Color } 
     1371     *  
     1372     */ 
     1373    public org.docx4j.wml.Color createColor() { 
     1374        return new org.docx4j.wml.Color(); 
     1375    } 
     1376 
     1377    /** 
     1378     * Create an instance of {@link CTSdtListItem } 
     1379     *  
     1380     */ 
     1381    public CTSdtListItem createCTSdtListItem() { 
     1382        return new CTSdtListItem(); 
     1383    } 
     1384 
     1385    /** 
     1386     * Create an instance of {@link CTTrPrBase.DivId } 
     1387     *  
     1388     */ 
     1389    public CTTrPrBase.DivId createCTTrPrBaseDivId() { 
     1390        return new CTTrPrBase.DivId(); 
     1391    } 
     1392 
     1393    /** 
     1394     * Create an instance of {@link CTBorder } 
     1395     *  
     1396     */ 
     1397    public CTBorder createCTBorder() { 
     1398        return new CTBorder(); 
     1399    } 
     1400 
     1401    /** 
     1402     * Create an instance of {@link CTWritingStyle } 
     1403     *  
     1404     */ 
     1405    public CTWritingStyle createCTWritingStyle() { 
     1406        return new CTWritingStyle(); 
     1407    } 
     1408 
     1409    /** 
     1410     * Create an instance of {@link PPrBase.NumPr.NumId } 
     1411     *  
     1412     */ 
     1413    public PPrBase.NumPr.NumId createPPrBaseNumPrNumId() { 
     1414        return new PPrBase.NumPr.NumId(); 
     1415    } 
     1416 
     1417    /** 
     1418     * Create an instance of {@link CTWebSettings.Encoding } 
     1419     *  
     1420     */ 
     1421    public CTWebSettings.Encoding createCTWebSettingsEncoding() { 
     1422        return new CTWebSettings.Encoding(); 
     1423    } 
     1424 
     1425    /** 
     1426     * Create an instance of {@link CTOdsoFieldMapData } 
     1427     *  
     1428     */ 
     1429    public CTOdsoFieldMapData createCTOdsoFieldMapData() { 
     1430        return new CTOdsoFieldMapData(); 
     1431    } 
     1432 
     1433    /** 
     1434     * Create an instance of {@link CTLock } 
     1435     *  
     1436     */ 
     1437    public CTLock createCTLock() { 
     1438        return new CTLock(); 
     1439    } 
     1440 
     1441    /** 
     1442     * Create an instance of {@link CTMarkupRange } 
     1443     *  
     1444     */ 
     1445    public CTMarkupRange createCTMarkupRange() { 
     1446        return new CTMarkupRange(); 
     1447    } 
     1448 
     1449    /** 
     1450     * Create an instance of {@link CTFFDDList.Default } 
     1451     *  
     1452     */ 
     1453    public CTFFDDList.Default createCTFFDDListDefault() { 
     1454        return new CTFFDDList.Default(); 
     1455    } 
     1456 
     1457    /** 
     1458     * Create an instance of {@link CTAltChunkPr } 
     1459     *  
     1460     */ 
     1461    public CTAltChunkPr createCTAltChunkPr() { 
     1462        return new CTAltChunkPr(); 
     1463    } 
     1464 
     1465    /** 
     1466     * Create an instance of {@link CTEm } 
     1467     *  
     1468     */ 
     1469    public CTEm createCTEm() { 
     1470        return new CTEm(); 
     1471    } 
     1472 
     1473    /** 
     1474     * Create an instance of {@link CTTblPrChange } 
     1475     *  
     1476     */ 
     1477    public CTTblPrChange createCTTblPrChange() { 
     1478        return new CTTblPrChange(); 
     1479    } 
     1480 
     1481    /** 
     1482     * Create an instance of {@link Styles.DocDefaults.PPrDefault } 
     1483     *  
     1484     */ 
     1485    public Styles.DocDefaults.PPrDefault createStylesDocDefaultsPPrDefault() { 
     1486        return new Styles.DocDefaults.PPrDefault(); 
     1487    } 
     1488 
     1489    /** 
     1490     * Create an instance of {@link CTFitText } 
     1491     *  
     1492     */ 
     1493    public CTFitText createCTFitText() { 
     1494        return new CTFitText(); 
     1495    } 
     1496 
     1497    /** 
     1498     * Create an instance of {@link R.EndnoteRef } 
     1499     *  
     1500     */ 
     1501    public R.EndnoteRef createREndnoteRef() { 
     1502        return new R.EndnoteRef(); 
     1503    } 
     1504 
     1505    /** 
     1506     * Create an instance of {@link CTSettings.ClickAndTypeStyle } 
     1507     *  
     1508     */ 
     1509    public CTSettings.ClickAndTypeStyle createCTSettingsClickAndTypeStyle() { 
     1510        return new CTSettings.ClickAndTypeStyle(); 
     1511    } 
     1512 
     1513    /** 
     1514     * Create an instance of {@link PPrBase.Spacing } 
     1515     *  
     1516     */ 
     1517    public PPrBase.Spacing createPPrBaseSpacing() { 
     1518        return new PPrBase.Spacing(); 
     1519    } 
     1520 
     1521    /** 
     1522     * Create an instance of {@link R.NoBreakHyphen } 
     1523     *  
     1524     */ 
     1525    public R.NoBreakHyphen createRNoBreakHyphen() { 
     1526        return new R.NoBreakHyphen(); 
     1527    } 
     1528 
     1529    /** 
     1530     * Create an instance of {@link TextDirection } 
     1531     *  
     1532     */ 
     1533    public TextDirection createTextDirection() { 
     1534        return new TextDirection(); 
     1535    } 
     1536 
     1537    /** 
     1538     * Create an instance of {@link RStyle } 
     1539     *  
     1540     */ 
     1541    public RStyle createRStyle() { 
     1542        return new RStyle(); 
     1543    } 
     1544 
     1545    /** 
     1546     * Create an instance of {@link R.YearShort } 
     1547     *  
     1548     */ 
     1549    public R.YearShort createRYearShort() { 
     1550        return new R.YearShort(); 
     1551    } 
     1552 
     1553    /** 
     1554     * Create an instance of {@link Styles.LatentStyles } 
     1555     *  
     1556     */ 
     1557    public Styles.LatentStyles createStylesLatentStyles() { 
     1558        return new Styles.LatentStyles(); 
     1559    } 
     1560 
     1561    /** 
     1562     * Create an instance of {@link CTEmpty } 
     1563     *  
     1564     */ 
     1565    public CTEmpty createCTEmpty() { 
     1566        return new CTEmpty(); 
     1567    } 
     1568 
     1569    /** 
     1570     * Create an instance of {@link PPrBase } 
     1571     *  
     1572     */ 
     1573    public PPrBase createPPrBase() { 
     1574        return new PPrBase(); 
     1575    } 
     1576 
     1577    /** 
     1578     * Create an instance of {@link PPrBase.PBdr } 
     1579     *  
     1580     */ 
     1581    public PPrBase.PBdr createPPrBasePBdr() { 
     1582        return new PPrBase.PBdr(); 
    1931583    } 
    1941584 
     
    2021592 
    2031593    /** 
    204      * Create an instance of {@link RunTrackChange } 
    205      *  
    206      */ 
    207     public RunTrackChange createRunTrackChange() { 
    208         return new RunTrackChange(); 
    209     } 
    210  
    211     /** 
    212      * Create an instance of {@link Lvl.LvlRestart } 
    213      *  
    214      */ 
    215     public Lvl.LvlRestart createLvlLvlRestart() { 
    216         return new Lvl.LvlRestart(); 
    217     } 
    218  
    219     /** 
    220      * Create an instance of {@link Styles.LatentStyles } 
    221      *  
    222      */ 
    223     public Styles.LatentStyles createStylesLatentStyles() { 
    224         return new Styles.LatentStyles(); 
     1594     * Create an instance of {@link CTOdsoFieldMapData.MappedName } 
     1595     *  
     1596     */<