Changeset 1201


Ignore:
Timestamp:
09/06/10 20:52:18 (17 months ago)
Author:
jharrop
Message:

Additional xlsx parts. Had to regenerate dml/ to include spreadsheet drawing.

Location:
trunk/docx4j/src
Files:
26 added
58 edited

Legend:

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

    r1041 r1201  
    5757 
    5858    @XmlElements({ 
    59         @XmlElement(name = "gradFill", type = CTGradientFillProperties.class), 
     59        @XmlElement(name = "pattFill", type = CTPatternFillProperties.class), 
     60        @XmlElement(name = "blipFill", type = CTBlipFillProperties.class), 
     61        @XmlElement(name = "solidFill", type = CTSolidColorFillProperties.class), 
     62        @XmlElement(name = "noFill", type = CTNoFillProperties.class), 
    6063        @XmlElement(name = "grpFill", type = CTGroupFillProperties.class), 
    61         @XmlElement(name = "pattFill", type = CTPatternFillProperties.class), 
    62         @XmlElement(name = "noFill", type = CTNoFillProperties.class), 
    63         @XmlElement(name = "blipFill", type = CTBlipFillProperties.class), 
    64         @XmlElement(name = "solidFill", type = CTSolidColorFillProperties.class) 
     64        @XmlElement(name = "gradFill", type = CTGradientFillProperties.class) 
    6565    }) 
    6666    protected List<Object> egFillProperties; 
     
    8484     * <p> 
    8585     * Objects of the following type(s) are allowed in the list 
    86      * {@link CTGradientFillProperties } 
    87      * {@link CTGroupFillProperties } 
    8886     * {@link CTPatternFillProperties } 
    89      * {@link CTNoFillProperties } 
    9087     * {@link CTBlipFillProperties } 
    9188     * {@link CTSolidColorFillProperties } 
     89     * {@link CTNoFillProperties } 
     90     * {@link CTGroupFillProperties } 
     91     * {@link CTGradientFillProperties } 
    9292     *  
    9393     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTBlip.java

    r1041 r1201  
    8080 
    8181    @XmlElements({ 
     82        @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
     83        @XmlElement(name = "blur", type = CTBlurEffect.class), 
     84        @XmlElement(name = "alphaModFix", type = CTAlphaModulateFixedEffect.class), 
     85        @XmlElement(name = "tint", type = CTTintEffect.class), 
     86        @XmlElement(name = "alphaInv", type = CTAlphaInverseEffect.class), 
     87        @XmlElement(name = "hsl", type = CTHSLEffect.class), 
     88        @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
     89        @XmlElement(name = "alphaCeiling", type = CTAlphaCeilingEffect.class), 
    8290        @XmlElement(name = "alphaBiLevel", type = CTAlphaBiLevelEffect.class), 
    83         @XmlElement(name = "alphaInv", type = CTAlphaInverseEffect.class), 
    84         @XmlElement(name = "blur", type = CTBlurEffect.class), 
    85         @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
    86         @XmlElement(name = "alphaCeiling", type = CTAlphaCeilingEffect.class), 
     91        @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
     92        @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
     93        @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
     94        @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class), 
    8795        @XmlElement(name = "lum", type = CTLuminanceEffect.class), 
    88         @XmlElement(name = "alphaModFix", type = CTAlphaModulateFixedEffect.class), 
    89         @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class), 
    90         @XmlElement(name = "tint", type = CTTintEffect.class), 
    91         @XmlElement(name = "hsl", type = CTHSLEffect.class), 
    92         @XmlElement(name = "alphaMod", type = CTAlphaModulateEffect.class), 
    93         @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
    94         @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
    95         @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
     96        @XmlElement(name = "clrChange", type = CTColorChangeEffect.class), 
    9697        @XmlElement(name = "grayscl", type = CTGrayscaleEffect.class), 
    97         @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
    98         @XmlElement(name = "clrChange", type = CTColorChangeEffect.class) 
     98        @XmlElement(name = "alphaMod", type = CTAlphaModulateEffect.class) 
    9999    }) 
    100100    protected List<Object> alphaBiLevelOrAlphaCeilingOrAlphaFloor; 
     
    125125     * <p> 
    126126     * Objects of the following type(s) are allowed in the list 
     127     * {@link CTFillOverlayEffect } 
     128     * {@link CTBlurEffect } 
     129     * {@link CTAlphaModulateFixedEffect } 
     130     * {@link CTTintEffect } 
     131     * {@link CTAlphaInverseEffect } 
     132     * {@link CTHSLEffect } 
     133     * {@link CTBiLevelEffect } 
     134     * {@link CTAlphaCeilingEffect } 
    127135     * {@link CTAlphaBiLevelEffect } 
    128      * {@link CTAlphaInverseEffect } 
    129      * {@link CTBlurEffect } 
    130      * {@link CTFillOverlayEffect } 
    131      * {@link CTAlphaCeilingEffect } 
     136     * {@link CTAlphaFloorEffect } 
     137     * {@link CTAlphaReplaceEffect } 
     138     * {@link CTDuotoneEffect } 
     139     * {@link CTColorReplaceEffect } 
    132140     * {@link CTLuminanceEffect } 
    133      * {@link CTAlphaModulateFixedEffect } 
    134      * {@link CTColorReplaceEffect } 
    135      * {@link CTTintEffect } 
    136      * {@link CTHSLEffect } 
     141     * {@link CTColorChangeEffect } 
     142     * {@link CTGrayscaleEffect } 
    137143     * {@link CTAlphaModulateEffect } 
    138      * {@link CTBiLevelEffect } 
    139      * {@link CTDuotoneEffect } 
    140      * {@link CTAlphaReplaceEffect } 
    141      * {@link CTGrayscaleEffect } 
    142      * {@link CTAlphaFloorEffect } 
    143      * {@link CTColorChangeEffect } 
    144144     *  
    145145     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTColorMRU.java

    r1041 r1201  
    5757 
    5858    @XmlElements({ 
     59        @XmlElement(name = "sysClr", type = CTSystemColor.class), 
     60        @XmlElement(name = "srgbClr", type = CTSRgbColor.class), 
    5961        @XmlElement(name = "hslClr", type = CTHslColor.class), 
    60         @XmlElement(name = "schemeClr", type = CTSchemeColor.class), 
    6162        @XmlElement(name = "scrgbClr", type = CTScRgbColor.class), 
    6263        @XmlElement(name = "prstClr", type = CTPresetColor.class), 
    63         @XmlElement(name = "srgbClr", type = CTSRgbColor.class), 
    64         @XmlElement(name = "sysClr", type = CTSystemColor.class) 
     64        @XmlElement(name = "schemeClr", type = CTSchemeColor.class) 
    6565    }) 
    6666    protected List<Object> egColorChoice; 
     
    8484     * <p> 
    8585     * Objects of the following type(s) are allowed in the list 
     86     * {@link CTSystemColor } 
     87     * {@link CTSRgbColor } 
    8688     * {@link CTHslColor } 
    87      * {@link CTSchemeColor } 
    8889     * {@link CTScRgbColor } 
    8990     * {@link CTPresetColor } 
    90      * {@link CTSRgbColor } 
    91      * {@link CTSystemColor } 
     91     * {@link CTSchemeColor } 
    9292     *  
    9393     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTDuotoneEffect.java

    r1041 r1201  
    5757 
    5858    @XmlElements({ 
    59         @XmlElement(name = "prstClr", type = CTPresetColor.class), 
     59        @XmlElement(name = "sysClr", type = CTSystemColor.class), 
     60        @XmlElement(name = "hslClr", type = CTHslColor.class), 
    6061        @XmlElement(name = "schemeClr", type = CTSchemeColor.class), 
    6162        @XmlElement(name = "srgbClr", type = CTSRgbColor.class), 
    62         @XmlElement(name = "sysClr", type = CTSystemColor.class), 
    63         @XmlElement(name = "hslClr", type = CTHslColor.class), 
    64         @XmlElement(name = "scrgbClr", type = CTScRgbColor.class) 
     63        @XmlElement(name = "scrgbClr", type = CTScRgbColor.class), 
     64        @XmlElement(name = "prstClr", type = CTPresetColor.class) 
    6565    }) 
    6666    protected List<Object> egColorChoice; 
     
    8484     * <p> 
    8585     * Objects of the following type(s) are allowed in the list 
    86      * {@link CTPresetColor } 
     86     * {@link CTSystemColor } 
     87     * {@link CTHslColor } 
    8788     * {@link CTSchemeColor } 
    8889     * {@link CTSRgbColor } 
    89      * {@link CTSystemColor } 
    90      * {@link CTHslColor } 
    9190     * {@link CTScRgbColor } 
     91     * {@link CTPresetColor } 
    9292     *  
    9393     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTEffectContainer.java

    r1041 r1201  
    6161 
    6262    @XmlElements({ 
     63        @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
     64        @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class), 
     65        @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
     66        @XmlElement(name = "effect", type = CTEffectReference.class), 
     67        @XmlElement(name = "prstShdw", type = CTPresetShadowEffect.class), 
     68        @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
     69        @XmlElement(name = "glow", type = CTGlowEffect.class), 
    6370        @XmlElement(name = "xfrm", type = CTTransformEffect.class), 
     71        @XmlElement(name = "lum", type = CTLuminanceEffect.class), 
     72        @XmlElement(name = "hsl", type = CTHSLEffect.class), 
     73        @XmlElement(name = "alphaCeiling", type = CTAlphaCeilingEffect.class), 
     74        @XmlElement(name = "blend", type = CTBlendEffect.class), 
     75        @XmlElement(name = "grayscl", type = CTGrayscaleEffect.class), 
     76        @XmlElement(name = "alphaInv", type = CTAlphaInverseEffect.class), 
     77        @XmlElement(name = "alphaBiLevel", type = CTAlphaBiLevelEffect.class), 
     78        @XmlElement(name = "cont", type = CTEffectContainer.class), 
     79        @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
     80        @XmlElement(name = "softEdge", type = CTSoftEdgesEffect.class), 
     81        @XmlElement(name = "outerShdw", type = CTOuterShadowEffect.class), 
     82        @XmlElement(name = "tint", type = CTTintEffect.class), 
     83        @XmlElement(name = "innerShdw", type = CTInnerShadowEffect.class), 
     84        @XmlElement(name = "relOff", type = CTRelativeOffsetEffect.class), 
     85        @XmlElement(name = "reflection", type = CTReflectionEffect.class), 
     86        @XmlElement(name = "alphaModFix", type = CTAlphaModulateFixedEffect.class), 
     87        @XmlElement(name = "blur", type = CTBlurEffect.class), 
     88        @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
    6489        @XmlElement(name = "alphaOutset", type = CTAlphaOutsetEffect.class), 
     90        @XmlElement(name = "clrChange", type = CTColorChangeEffect.class), 
    6591        @XmlElement(name = "alphaMod", type = CTAlphaModulateEffect.class), 
    66         @XmlElement(name = "alphaCeiling", type = CTAlphaCeilingEffect.class), 
    67         @XmlElement(name = "clrRepl", type = CTColorReplaceEffect.class), 
    68         @XmlElement(name = "innerShdw", type = CTInnerShadowEffect.class), 
    69         @XmlElement(name = "alphaFloor", type = CTAlphaFloorEffect.class), 
    70         @XmlElement(name = "clrChange", type = CTColorChangeEffect.class), 
    71         @XmlElement(name = "lum", type = CTLuminanceEffect.class), 
    72         @XmlElement(name = "alphaRepl", type = CTAlphaReplaceEffect.class), 
    73         @XmlElement(name = "alphaInv", type = CTAlphaInverseEffect.class), 
    74         @XmlElement(name = "alphaModFix", type = CTAlphaModulateFixedEffect.class), 
    75         @XmlElement(name = "outerShdw", type = CTOuterShadowEffect.class), 
    76         @XmlElement(name = "softEdge", type = CTSoftEdgesEffect.class), 
    77         @XmlElement(name = "prstShdw", type = CTPresetShadowEffect.class), 
    78         @XmlElement(name = "biLevel", type = CTBiLevelEffect.class), 
    79         @XmlElement(name = "hsl", type = CTHSLEffect.class), 
    80         @XmlElement(name = "alphaBiLevel", type = CTAlphaBiLevelEffect.class), 
    81         @XmlElement(name = "relOff", type = CTRelativeOffsetEffect.class), 
    82         @XmlElement(name = "fillOverlay", type = CTFillOverlayEffect.class), 
    83         @XmlElement(name = "blur", type = CTBlurEffect.class), 
    84         @XmlElement(name = "blend", type = CTBlendEffect.class), 
    85         @XmlElement(name = "tint", type = CTTintEffect.class), 
    86         @XmlElement(name = "grayscl", type = CTGrayscaleEffect.class), 
    87         @XmlElement(name = "effect", type = CTEffectReference.class), 
    88         @XmlElement(name = "reflection", type = CTReflectionEffect.class), 
    89         @XmlElement(name = "glow", type = CTGlowEffect.class), 
    90         @XmlElement(name = "duotone", type = CTDuotoneEffect.class), 
    91         @XmlElement(name = "cont", type = CTEffectContainer.class), 
    9292        @XmlElement(name = "fill", type = CTFillEffect.class) 
    9393    }) 
     
    118118     * <p> 
    119119     * Objects of the following type(s) are allowed in the list 
     120     * {@link CTAlphaFloorEffect } 
     121     * {@link CTColorReplaceEffect } 
     122     * {@link CTAlphaReplaceEffect } 
     123     * {@link CTEffectReference } 
     124     * {@link CTPresetShadowEffect } 
     125     * {@link CTFillOverlayEffect } 
     126     * {@link CTGlowEffect } 
    120127     * {@link CTTransformEffect } 
     128     * {@link CTLuminanceEffect } 
     129     * {@link CTHSLEffect } 
     130     * {@link CTAlphaCeilingEffect } 
     131     * {@link CTBlendEffect } 
     132     * {@link CTGrayscaleEffect } 
     133     * {@link CTAlphaInverseEffect } 
     134     * {@link CTAlphaBiLevelEffect } 
     135     * {@link CTEffectContainer } 
     136     * {@link CTDuotoneEffect } 
     137     * {@link CTSoftEdgesEffect } 
     138     * {@link CTOuterShadowEffect } 
     139     * {@link CTTintEffect } 
     140     * {@link CTInnerShadowEffect } 
     141     * {@link CTRelativeOffsetEffect } 
     142     * {@link CTReflectionEffect } 
     143     * {@link CTAlphaModulateFixedEffect } 
     144     * {@link CTBlurEffect } 
     145     * {@link CTBiLevelEffect } 
    121146     * {@link CTAlphaOutsetEffect } 
     147     * {@link CTColorChangeEffect } 
    122148     * {@link CTAlphaModulateEffect } 
    123      * {@link CTAlphaCeilingEffect } 
    124      * {@link CTColorReplaceEffect } 
    125      * {@link CTInnerShadowEffect } 
    126      * {@link CTAlphaFloorEffect } 
    127      * {@link CTColorChangeEffect } 
    128      * {@link CTLuminanceEffect } 
    129      * {@link CTAlphaReplaceEffect } 
    130      * {@link CTAlphaInverseEffect } 
    131      * {@link CTAlphaModulateFixedEffect } 
    132      * {@link CTOuterShadowEffect } 
    133      * {@link CTSoftEdgesEffect } 
    134      * {@link CTPresetShadowEffect } 
    135      * {@link CTBiLevelEffect } 
    136      * {@link CTHSLEffect } 
    137      * {@link CTAlphaBiLevelEffect } 
    138      * {@link CTRelativeOffsetEffect } 
    139      * {@link CTFillOverlayEffect } 
    140      * {@link CTBlurEffect } 
    141      * {@link CTBlendEffect } 
    142      * {@link CTTintEffect } 
    143      * {@link CTGrayscaleEffect } 
    144      * {@link CTEffectReference } 
    145      * {@link CTReflectionEffect } 
    146      * {@link CTGlowEffect } 
    147      * {@link CTDuotoneEffect } 
    148      * {@link CTEffectContainer } 
    149149     * {@link CTFillEffect } 
    150150     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTFillStyleList.java

    r1041 r1201  
    5858    @XmlElements({ 
    5959        @XmlElement(name = "grpFill", type = CTGroupFillProperties.class), 
     60        @XmlElement(name = "noFill", type = CTNoFillProperties.class), 
    6061        @XmlElement(name = "gradFill", type = CTGradientFillProperties.class), 
    61         @XmlElement(name = "pattFill", type = CTPatternFillProperties.class), 
     62        @XmlElement(name = "blipFill", type = CTBlipFillProperties.class), 
    6263        @XmlElement(name = "solidFill", type = CTSolidColorFillProperties.class), 
    63         @XmlElement(name = "noFill", type = CTNoFillProperties.class), 
    64         @XmlElement(name = "blipFill", type = CTBlipFillProperties.class) 
     64        @XmlElement(name = "pattFill", type = CTPatternFillProperties.class) 
    6565    }) 
    6666    protected List<Object> egFillProperties; 
     
    8585     * Objects of the following type(s) are allowed in the list 
    8686     * {@link CTGroupFillProperties } 
     87     * {@link CTNoFillProperties } 
    8788     * {@link CTGradientFillProperties } 
     89     * {@link CTBlipFillProperties } 
     90     * {@link CTSolidColorFillProperties } 
    8891     * {@link CTPatternFillProperties } 
    89      * {@link CTSolidColorFillProperties } 
    90      * {@link CTNoFillProperties } 
    91      * {@link CTBlipFillProperties } 
    9292     *  
    9393     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTGvmlGroupShape.java

    r1041 r1201  
    7474    protected CTGroupShapeProperties grpSpPr; 
    7575    @XmlElements({ 
     76        @XmlElement(name = "sp", type = CTGvmlShape.class), 
     77        @XmlElement(name = "grpSp", type = CTGvmlGroupShape.class), 
     78        @XmlElement(name = "cxnSp", type = CTGvmlConnector.class), 
    7679        @XmlElement(name = "graphicFrame", type = CTGvmlGraphicalObjectFrame.class), 
    77         @XmlElement(name = "cxnSp", type = CTGvmlConnector.class), 
    78         @XmlElement(name = "grpSp", type = CTGvmlGroupShape.class), 
    7980        @XmlElement(name = "pic", type = CTGvmlPicture.class), 
    80         @XmlElement(name = "sp", type = CTGvmlShape.class), 
    8181        @XmlElement(name = "txSp", type = CTGvmlTextShape.class) 
    8282    }) 
     
    150150     * <p> 
    151151     * Objects of the following type(s) are allowed in the list 
     152     * {@link CTGvmlShape } 
     153     * {@link CTGvmlGroupShape } 
     154     * {@link CTGvmlConnector } 
    152155     * {@link CTGvmlGraphicalObjectFrame } 
    153      * {@link CTGvmlConnector } 
    154      * {@link CTGvmlGroupShape } 
    155156     * {@link CTGvmlPicture } 
    156      * {@link CTGvmlShape } 
    157157     * {@link CTGvmlTextShape } 
    158158     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTHslColor.java

    r1041 r1201  
    6262 
    6363    @XmlElementRefs({ 
    64         @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6564        @XmlElementRef(name = "lumOff", 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 = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "hueOff", 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), 
    70         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7166        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7267        @XmlElementRef(name = "blue", 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 = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "inv", 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), 
     72        @XmlElementRef(name = "comp", 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 = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7375        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7478        @XmlElementRef(name = "redOff", 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 = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7780        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7983        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    8084        @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    8185        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    8687        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    8788        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     89        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     91        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    9292    }) 
    9393    protected List<JAXBElement<?>> egColorTransform; 
     
    119119     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    120120     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    130121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    131122     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    132123     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    133124     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     133     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     134     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     136     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     137     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    134138     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    135139     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    136140     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    137141     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    138      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    139      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    140      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    141142     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    142143     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    143      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    144      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     144     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    145145     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    146146     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTOfficeArtExtension.java

    r1041 r1201  
    4343 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 
    4444 *       &lt;sequence> 
    45  *         &lt;any/> 
     45 *         &lt;any processContents='lax'/> 
    4646 *       &lt;/sequence> 
    4747 *       &lt;attribute name="uri" type="{http://www.w3.org/2001/XMLSchema}token" /> 
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTPath2D.java

    r1041 r1201  
    6868 
    6969    @XmlElements({ 
    70         @XmlElement(name = "moveTo", type = CTPath2DMoveTo.class), 
    71         @XmlElement(name = "arcTo", type = CTPath2DArcTo.class), 
    7270        @XmlElement(name = "lnTo", type = CTPath2DLineTo.class), 
    7371        @XmlElement(name = "quadBezTo", type = CTPath2DQuadBezierTo.class), 
    74         @XmlElement(name = "cubicBezTo", type = CTPath2DCubicBezierTo.class), 
    75         @XmlElement(name = "close", type = CTPath2DClose.class) 
     72        @XmlElement(name = "arcTo", type = CTPath2DArcTo.class), 
     73        @XmlElement(name = "close", type = CTPath2DClose.class), 
     74        @XmlElement(name = "moveTo", type = CTPath2DMoveTo.class), 
     75        @XmlElement(name = "cubicBezTo", type = CTPath2DCubicBezierTo.class) 
    7676    }) 
    7777    protected List<Object> closeOrMoveToOrLnTo; 
     
    105105     * <p> 
    106106     * Objects of the following type(s) are allowed in the list 
    107      * {@link CTPath2DMoveTo } 
    108      * {@link CTPath2DArcTo } 
    109107     * {@link CTPath2DLineTo } 
    110108     * {@link CTPath2DQuadBezierTo } 
     109     * {@link CTPath2DArcTo } 
     110     * {@link CTPath2DClose } 
     111     * {@link CTPath2DMoveTo } 
    111112     * {@link CTPath2DCubicBezierTo } 
    112      * {@link CTPath2DClose } 
    113113     *  
    114114     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTPresetColor.java

    r1041 r1201  
    6060 
    6161    @XmlElementRefs({ 
    62         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     62        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6363        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6464        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "redMod", 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 = "shade", 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 = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6575        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6781        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "blue", 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 = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7982        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    8083        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     84        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    9090    }) 
    9191    protected List<JAXBElement<?>> egColorTransform; 
     
    111111     * <p> 
    112112     * Objects of the following type(s) are allowed in the list 
    113      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    114      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    115      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    116      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    117      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    127113     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    128114     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     
    132118     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    133119     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    134123     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    135124     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    137126     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    138128     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     133     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     134     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     136     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     137     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     138     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    139139     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    140      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     140     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    141141     *  
    142142     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTSRgbColor.java

    r1041 r1201  
    6262 
    6363    @XmlElementRefs({ 
     64        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "lumOff", 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), 
     67        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "invGamma", 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 = "lum", 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), 
     74        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6490        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "redMod", 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), 
    68         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    69         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "blueMod", 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 = "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 = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     91        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    9292    }) 
    9393    protected List<JAXBElement<?>> egColorTransform; 
     
    115115     * Objects of the following type(s) are allowed in the list 
    116116     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    117      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    118      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    119      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    124      * {@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 CTPositiveFixedPercentage }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    130117     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    131118     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    132119     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    133126     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    134127     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    135131     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    136132     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    138      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    139133     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     134     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    140136     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    141137     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    142      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     138     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     139     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     140     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     141     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     142     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    143143     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    144144     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTScRgbColor.java

    r1041 r1201  
    6262 
    6363    @XmlElementRefs({ 
     64        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "satMod", 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 = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "alpha", 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 = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6488        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    65         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    66         @XmlElementRef(name = "blueOff", 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 = "hue", 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 = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    7190        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     91        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    9292    }) 
    9393    protected List<JAXBElement<?>> egColorTransform; 
     
    117117     * <p> 
    118118     * Objects of the following type(s) are allowed in the list 
     119     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     123     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     124     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     127     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     128     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     129     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     131     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     133     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     134     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     136     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     137     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     138     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     139     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     140     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     141     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     142     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    119143     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    122      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    123      * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    125      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    130      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    133      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    138      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    139      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     144     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    140145     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    141146     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    142      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    143      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    144      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    145      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    146      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    147147     *  
    148148     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTSchemeColor.java

    r1041 r1201  
    6060 
    6161    @XmlElementRefs({ 
     62        @XmlElementRef(name = "tint", 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 = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     65        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     67        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     68        @XmlElementRef(name = "inv", 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 = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     73        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     74        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     75        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     76        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6288        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    63         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    64         @XmlElementRef(name = "gray", 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 = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    67         @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    68         @XmlElementRef(name = "lum", 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 = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    71         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    72         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     89        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    9090    }) 
    9191    protected List<JAXBElement<?>> egColorTransform; 
     
    111111     * <p> 
    112112     * Objects of the following type(s) are allowed in the list 
    113      * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
     113     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     114     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     115     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    114116     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    115      * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     117     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     118     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     119     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     120     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    116121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    117122     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    118123     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    119124     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    120      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    121      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    122125     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
    123127     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    124128     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    125129     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    126      * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    129      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
    130      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    131      * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
    132130     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    133131     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
     132     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    135133     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    136134     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     135     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    138136     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    139137     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    140      * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
     138     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     139     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
     140     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    141141     *  
    142142     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTSystemColor.java

    r1041 r1201  
    6464 
    6565    @XmlElementRefs({ 
    66         @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     66        @XmlElementRef(name = "lumMod", 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), 
    6768        @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     69        @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     70        @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     71        @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     72        @XmlElementRef(name = "redMod", 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 = "invGamma", 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), 
     76        @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     77        @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     78        @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     79        @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     80        @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     81        @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     82        @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     83        @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     84        @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     85        @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     86        @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     87        @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     88        @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     89        @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
     90        @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6891        @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    6992        @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    70         @XmlElementRef(name = "lumOff", 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 = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    73         @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    74         @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    75         @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    76         @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    77         @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    78         @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    79         @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    80         @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    81         @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    82         @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    83         @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    84         @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    85         @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    86         @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    87         @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    88         @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    89         @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    90         @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    91         @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    92         @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class), 
    93         @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
     93        @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class) 
    9494    }) 
    9595    protected List<JAXBElement<?>> egColorTransform; 
     
    119119     * <p> 
    120120     * Objects of the following type(s) are allowed in the list 
    121      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     121     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     122     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    122123     * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >} 
    123124     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    124      * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     125     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     126     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    125127     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    126128     * {@link JAXBElement }{@code <}{@link CTAngle }{@code >} 
    127      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    128      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    129129     * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >} 
     130     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    130131     * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >} 
    131132     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    132      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    133      * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
    134      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    135      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    136      * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
    137      * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    138133     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    139134     * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >} 
     
    141136     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    142137     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    143      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    144      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    145      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    146      * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
    147138     * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >} 
    148139     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     140     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
     141     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     142     * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >} 
     143     * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >} 
     144     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     145     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     146     * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >} 
     147     * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >} 
     148     * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >} 
    149149     *  
    150150     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/CTTextParagraph.java

    r1041 r1201  
    6262    protected CTTextParagraphProperties pPr; 
    6363    @XmlElements({ 
     64        @XmlElement(name = "r", type = CTRegularTextRun.class), 
    6465        @XmlElement(name = "fld", type = CTTextField.class), 
    65         @XmlElement(name = "br", type = CTTextLineBreak.class), 
    66         @XmlElement(name = "r", type = CTRegularTextRun.class) 
     66        @XmlElement(name = "br", type = CTTextLineBreak.class) 
    6767    }) 
    6868    protected List<Object> egTextRun; 
     
    111111     * <p> 
    112112     * Objects of the following type(s) are allowed in the list 
     113     * {@link CTRegularTextRun } 
    113114     * {@link CTTextField } 
    114115     * {@link CTTextLineBreak } 
    115      * {@link CTRegularTextRun } 
    116116     *  
    117117     *  
  • trunk/docx4j/src/main/java/org/docx4j/dml/GraphicData.java

    r1044 r1201  
    4949 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 
    5050 *       &lt;sequence> 
    51  *         &lt;any/> 
     51 *         &lt;any maxOccurs="unbounded" minOccurs="0"/> 
    5252 *       &lt;/sequence> 
    5353 *       &lt;attribute name="uri" type="{http://www.w3.org/2001/XMLSchema}token" /> 
  • trunk/docx4j/src/main/java/org/docx4j/dml/ObjectFactory.java

    r1041 r1201  
    5151    private final static QName _ThemeManager_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "themeManager"); 
    5252    private final static QName _Tbl_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "tbl"); 
     53    private final static QName _CTSchemeColorAlpha_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alpha"); 
    5354    private final static QName _CTSchemeColorLum_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lum"); 
    54     private final static QName _CTSchemeColorAlpha_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alpha"); 
    5555    private final static QName _CTSchemeColorGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gamma"); 
    5656    private final static QName _CTSchemeColorInvGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "invGamma"); 
     
    6767    private final static QName _CTSchemeColorRed_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "red"); 
    6868    private final static QName _CTSchemeColorSatMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "satMod"); 
     69    private final static QName _CTSchemeColorBlueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueMod"); 
    6970    private final static QName _CTSchemeColorHueOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hueOff"); 
    70     private final static QName _CTSchemeColorBlueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueMod"); 
    7171    private final static QName _CTSchemeColorShade_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "shade"); 
    7272    private final static QName _CTSchemeColorLumMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lumMod"); 
     
    8888 
    8989    /** 
     90     * Create an instance of {@link CTLineJoinBevel } 
     91     *  
     92     */ 
     93    public CTLineJoinBevel createCTLineJoinBevel() { 
     94        return new CTLineJoinBevel(); 
     95    } 
     96 
     97    /** 
     98     * Create an instance of {@link CTCustomGeometry2D } 
     99     *  
     100     */ 
     101    public CTCustomGeometry2D createCTCustomGeometry2D() { 
     102        return new CTCustomGeometry2D(); 
     103    } 
     104 
     105    /** 
     106     * Create an instance of {@link CTTextNoBullet } 
     107     *  
     108     */ 
     109    public CTTextNoBullet createCTTextNoBullet() { 
     110        return new CTTextNoBullet(); 
     111    } 
     112 
     113    /** 
     114     * Create an instance of {@link CTTableRow } 
     115     *  
     116     */ 
     117    public CTTableRow createCTTableRow() { 
     118        return new CTTableRow(); 
     119    } 
     120 
     121    /** 
     122     * Create an instance of {@link CTTintEffect } 
     123     *  
     124     */ 
     125    public CTTintEffect createCTTintEffect() { 
     126        return new CTTintEffect(); 
     127    } 
     128 
     129    /** 
     130     * Create an instance of {@link CTThemeableLineStyle } 
     131     *  
     132     */ 
     133    public CTThemeableLineStyle createCTThemeableLineStyle() { 
     134        return new CTThemeableLineStyle(); 
     135    } 
     136 
     137    /** 
     138     * Create an instance of {@link CTLinearShadeProperties } 
     139     *  
     140     */ 
     141    public CTLinearShadeProperties createCTLinearShadeProperties() { 
     142        return new CTLinearShadeProperties(); 
     143    } 
     144 
     145    /** 
     146     * Create an instance of {@link CTConnectorLocking } 
     147     *  
     148     */ 
     149    public CTConnectorLocking createCTConnectorLocking() { 
     150        return new CTConnectorLocking(); 
     151    } 
     152 
     153    /** 
     154     * Create an instance of {@link FontCollection.Font } 
     155     *  
     156     */ 
     157    public FontCollection.Font createFontCollectionFont() { 
     158        return new FontCollection.Font(); 
     159    } 
     160 
     161    /** 
     162     * Create an instance of {@link CTGeomRect } 
     163     *  
     164     */ 
     165    public CTGeomRect createCTGeomRect() { 
     166        return new CTGeomRect(); 
     167    } 
     168 
     169    /** 
     170     * Create an instance of {@link CTAlphaReplaceEffect } 
     171     *  
     172     */ 
     173    public CTAlphaReplaceEffect createCTAlphaReplaceEffect() { 
     174        return new CTAlphaReplaceEffect(); 
     175    } 
     176 
     177    /** 
     178     * Create an instance of {@link CTPositiveFixedPercentage } 
     179     *  
     180     */ 
     181    public CTPositiveFixedPercentage createCTPositiveFixedPercentage() { 
     182        return new CTPositiveFixedPercentage(); 
     183    } 
     184 
     185    /** 
     186     * Create an instance of {@link CTBlipFillProperties } 
     187     *  
     188     */ 
     189    public CTBlipFillProperties createCTBlipFillProperties() { 
     190        return new CTBlipFillProperties(); 
     191    } 
     192 
     193    /** 
     194     * Create an instance of {@link CTGvmlPictureNonVisual } 
     195     *  
     196     */ 
     197    public CTGvmlPictureNonVisual createCTGvmlPictureNonVisual() { 
     198        return new CTGvmlPictureNonVisual(); 
     199    } 
     200 
     201    /** 
     202     * Create an instance of {@link CTAngle } 
     203     *  
     204     */ 
     205    public CTAngle createCTAngle() { 
     206        return new CTAngle(); 
     207    } 
     208 
     209    /** 
     210     * Create an instance of {@link CTTableStyleList } 
     211     *  
     212     */ 
     213    public CTTableStyleList createCTTableStyleList() { 
     214        return new CTTableStyleList(); 
     215    } 
     216 
     217    /** 
     218     * Create an instance of {@link CTAnimationElementChoice } 
     219     *  
     220     */ 
     221    public CTAnimationElementChoice createCTAnimationElementChoice() { 
     222        return new CTAnimationElementChoice(); 
     223    } 
     224 
     225    /** 
     226     * Create an instance of {@link CTVideoFile } 
     227     *  
     228     */ 
     229    public CTVideoFile createCTVideoFile() { 
     230        return new CTVideoFile(); 
     231    } 
     232 
     233    /** 
     234     * Create an instance of {@link CTPositiveFixedAngle } 
     235     *  
     236     */ 
     237    public CTPositiveFixedAngle createCTPositiveFixedAngle() { 
     238        return new CTPositiveFixedAngle(); 
     239    } 
     240 
     241    /** 
     242     * Create an instance of {@link CTPresetColor } 
     243     *  
     244     */ 
     245    public CTPresetColor createCTPresetColor() { 
     246        return new CTPresetColor(); 
     247    } 
     248 
     249    /** 
     250     * Create an instance of {@link CTGeomGuide } 
     251     *  
     252     */ 
     253    public CTGeomGuide createCTGeomGuide() { 
     254        return new CTGeomGuide(); 
     255    } 
     256 
     257    /** 
     258     * Create an instance of {@link CTColorReplaceEffect } 
     259     *  
     260     */ 
     261    public CTColorReplaceEffect createCTColorReplaceEffect() { 
     262        return new CTColorReplaceEffect(); 
     263    } 
     264 
     265    /** 
     266     * Create an instance of {@link CTReflectionEffect } 
     267     *  
     268     */ 
     269    public CTReflectionEffect createCTReflectionEffect() { 
     270        return new CTReflectionEffect(); 
     271    } 
     272 
     273    /** 
     274     * Create an instance of {@link CTColorMapping } 
     275     *  
     276     */ 
     277    public CTColorMapping createCTColorMapping() { 
     278        return new CTColorMapping(); 
     279    } 
     280 
     281    /** 
     282     * Create an instance of {@link CTTableCellProperties } 
     283     *  
     284     */ 
     285    public CTTableCellProperties createCTTableCellProperties() { 
     286        return new CTTableCellProperties(); 
     287    } 
     288 
     289    /** 
     290     * Create an instance of {@link BaseStyles.FontScheme } 
     291     *  
     292     */ 
     293    public BaseStyles.FontScheme createBaseStylesFontScheme() { 
     294        return new BaseStyles.FontScheme(); 
     295    } 
     296 
     297    /** 
     298     * Create an instance of {@link CTAdjPoint2D } 
     299     *  
     300     */ 
     301    public CTAdjPoint2D createCTAdjPoint2D() { 
     302        return new CTAdjPoint2D(); 
     303    } 
     304 
     305    /** 
     306     * Create an instance of {@link CTAudioFile } 
     307     *  
     308     */ 
     309    public CTAudioFile createCTAudioFile() { 
     310        return new CTAudioFile(); 
     311    } 
     312 
     313    /** 
     314     * Create an instance of {@link CTTextSpacingPercent } 
     315     *  
     316     */ 
     317    public CTTextSpacingPercent createCTTextSpacingPercent() { 
     318        return new CTTextSpacingPercent(); 
     319    } 
     320 
     321    /** 
     322     * Create an instance of {@link CTStretchInfoProperties } 
     323     *  
     324     */ 
     325    public CTStretchInfoProperties createCTStretchInfoProperties() { 
     326        return new CTStretchInfoProperties(); 
     327    } 
     328 
     329    /** 
     330     * Create an instance of {@link CTTableProperties } 
     331     *  
     332     */ 
     333    public CTTableProperties createCTTableProperties() { 
     334        return new CTTableProperties(); 
     335    } 
     336 
     337    /** 
     338     * Create an instance of {@link CTTableBackgroundStyle } 
     339     *  
     340     */ 
     341    public CTTableBackgroundStyle createCTTableBackgroundStyle() { 
     342        return new CTTableBackgroundStyle(); 
     343    } 
     344 
     345    /** 
     346     * Create an instance of {@link CTDashStop } 
     347     *  
     348     */ 
     349    public CTDashStop createCTDashStop() { 
     350        return new CTDashStop(); 
     351    } 
     352 
     353    /** 
     354     * Create an instance of {@link CTPresetGeometry2D } 
     355     *  
     356     */ 
     357    public CTPresetGeometry2D createCTPresetGeometry2D() { 
     358        return new CTPresetGeometry2D(); 
     359    } 
     360 
     361    /** 
     362     * Create an instance of {@link CTSchemeColor } 
     363     *  
     364     */ 
     365    public CTSchemeColor createCTSchemeColor() { 
     366        return new CTSchemeColor(); 
     367    } 
     368 
     369    /** 
     370     * Create an instance of {@link CTPoint3D } 
     371     *  
     372     */ 
     373    public CTPoint3D createCTPoint3D() { 
     374        return new CTPoint3D(); 
     375    } 
     376 
     377    /** 
     378     * Create an instance of {@link CTLineJoinRound } 
     379     *  
     380     */ 
     381    public CTLineJoinRound createCTLineJoinRound() { 
     382        return new CTLineJoinRound(); 
     383    } 
     384 
     385    /** 
     386     * Create an instance of {@link CTClipboardStyleSheet } 
     387     *  
     388     */ 
     389    public CTClipboardStyleSheet createCTClipboardStyleSheet() { 
     390        return new CTClipboardStyleSheet(); 
     391    } 
     392 
     393    /** 
     394     * Create an instance of {@link CTColor } 
     395     *  
     396     */ 
     397    public CTColor createCTColor() { 
     398        return new CTColor(); 
     399    } 
     400 
     401    /** 
     402     * Create an instance of {@link CTPresetTextShape } 
     403     *  
     404     */ 
     405    public CTPresetTextShape createCTPresetTextShape() { 
     406        return new CTPresetTextShape(); 
     407    } 
     408 
     409    /** 
     410     * Create an instance of {@link CTPath2DLineTo } 
     411     *  
     412     */ 
     413    public CTPath2DLineTo createCTPath2DLineTo() { 
     414        return new CTPath2DLineTo(); 
     415    } 
     416 
     417    /** 
     418     * Create an instance of {@link CTEffectStyleList } 
     419     *  
     420     */ 
     421    public CTEffectStyleList createCTEffectStyleList() { 
     422        return new CTEffectStyleList(); 
     423    } 
     424 
     425    /** 
     426     * Create an instance of {@link CTGvmlGraphicalObjectFrame } 
     427     *  
     428     */ 
     429    public CTGvmlGraphicalObjectFrame createCTGvmlGraphicalObjectFrame() { 
     430        return new CTGvmlGraphicalObjectFrame(); 
     431    } 
     432 
     433    /** 
     434     * Create an instance of {@link CTLineJoinMiterProperties } 
     435     *  
     436     */ 
     437    public CTLineJoinMiterProperties createCTLineJoinMiterProperties() { 
     438        return new CTLineJoinMiterProperties(); 
     439    } 
     440 
     441    /** 
     442     * Create an instance of {@link CTTextTabStop } 
     443     *  
     444     */ 
     445    public CTTextTabStop createCTTextTabStop() { 
     446        return new CTTextTabStop(); 
     447    } 
     448 
     449    /** 
     450     * Create an instance of {@link CTGammaTransform } 
     451     *  
     452     */ 
     453    public CTGammaTransform createCTGammaTransform() { 
     454        return new CTGammaTransform(); 
     455    } 
     456 
     457    /** 
     458     * Create an instance of {@link CTTable } 
     459     *  
     460     */ 
     461    public CTTable createCTTable() { 
     462        return new CTTable(); 
     463    } 
     464 
     465    /** 
     466     * Create an instance of {@link CTQuickTimeFile } 
     467     *  
     468     */ 
     469    public CTQuickTimeFile createCTQuickTimeFile() { 
     470        return new CTQuickTimeFile(); 
     471    } 
     472 
     473    /** 
     474     * Create an instance of {@link CTGradientFillProperties } 
     475     *  
     476     */ 
     477    public CTGradientFillProperties createCTGradientFillProperties() { 
     478        return new CTGradientFillProperties(); 
     479    } 
     480 
     481    /** 
     482     * Create an instance of {@link CTWholeE2OFormatting } 
     483     *  
     484     */ 
     485    public CTWholeE2OFormatting createCTWholeE2OFormatting() { 
     486        return new CTWholeE2OFormatting(); 
     487    } 
     488 
     489    /** 
     490     * Create an instance of {@link CTTextCharBullet } 
     491     *  
     492     */ 
     493    public CTTextCharBullet createCTTextCharBullet() { 
     494        return new CTTextCharBullet(); 
     495    } 
     496 
     497    /** 
     498     * Create an instance of {@link CTAnimationChartElement } 
     499     *  
     500     */ 
     501    public CTAnimationChartElement createCTAnimationChartElement() { 
     502        return new CTAnimationChartElement(); 
     503    } 
     504 
     505    /** 
     506     * Create an instance of {@link CTOfficeArtExtensionList } 
     507     *  
     508     */ 
     509    public CTOfficeArtExtensionList createCTOfficeArtExtensionList() { 
     510        return new CTOfficeArtExtensionList(); 
     511    } 
     512 
     513    /** 
     514     * Create an instance of {@link CTTextUnderlineLineFollowText } 
     515     *  
     516     */ 
     517    public CTTextUnderlineLineFollowText createCTTextUnderlineLineFollowText() { 
     518        return new CTTextUnderlineLineFollowText(); 
     519    } 
     520 
     521    /** 
     522     * Create an instance of {@link CTConnectionSiteList } 
     523     *  
     524     */ 
     525    public CTConnectionSiteList createCTConnectionSiteList() { 
     526        return new CTConnectionSiteList(); 
     527    } 
     528 
     529    /** 
     530     * Create an instance of {@link CTBaseStylesOverride } 
     531     *  
     532     */ 
     533    public CTBaseStylesOverride createCTBaseStylesOverride() { 
     534        return new CTBaseStylesOverride(); 
     535    } 
     536 
     537    /** 
     538     * Create an instance of {@link CTTextNormalAutofit } 
     539     *  
     540     */ 
     541    public CTTextNormalAutofit createCTTextNormalAutofit() { 
     542        return new CTTextNormalAutofit(); 
     543    } 
     544 
     545    /** 
     546     * Create an instance of {@link CTNonVisualConnectorProperties } 
     547     *  
     548     */ 
     549    public CTNonVisualConnectorProperties createCTNonVisualConnectorProperties() { 
     550        return new CTNonVisualConnectorProperties(); 
     551    } 
     552 
     553    /** 
     554     * Create an instance of {@link CTTextBodyProperties } 
     555     *  
     556     */ 
     557    public CTTextBodyProperties createCTTextBodyProperties() { 
     558        return new CTTextBodyProperties(); 
     559    } 
     560 
     561    /** 
     562     * Create an instance of {@link CTTextBulletSizeFollowText } 
     563     *  
     564     */ 
     565    public CTTextBulletSizeFollowText createCTTextBulletSizeFollowText() { 
     566        return new CTTextBulletSizeFollowText(); 
     567    } 
     568 
     569    /** 
     570     * Create an instance of {@link CTFillStyleList } 
     571     *  
     572     */ 
     573    public CTFillStyleList createCTFillStyleList() { 
     574        return new CTFillStyleList(); 
     575    } 
     576 
     577    /** 
     578     * Create an instance of {@link CTLineStyleList } 
     579     *  
     580     */ 
     581    public CTLineStyleList createCTLineStyleList() { 
     582        return new CTLineStyleList(); 
     583    } 
     584 
     585    /** 
     586     * Create an instance of {@link CTGvmlShape } 
     587     *  
     588     */ 
     589    public CTGvmlShape createCTGvmlShape() { 
     590        return new CTGvmlShape(); 
     591    } 
     592 
     593    /** 
     594     * Create an instance of {@link CTTextNoAutofit } 
     595     *  
     596     */ 
     597    public CTTextNoAutofit createCTTextNoAutofit() { 
     598        return new CTTextNoAutofit(); 
     599    } 
     600 
     601    /** 
     602     * Create an instance of {@link CTColorScheme } 
     603     *  
     604     */ 
     605    public CTColorScheme createCTColorScheme() { 
     606        return new CTColorScheme(); 
     607    } 
     608 
     609    /** 
     610     * Create an instance of {@link CTSolidColorFillProperties } 
     611     *  
     612     */ 
     613    public CTSolidColorFillProperties createCTSolidColorFillProperties() { 
     614        return new CTSolidColorFillProperties(); 
     615    } 
     616 
     617    /** 
     618     * Create an instance of {@link CTPath2DMoveTo } 
     619     *  
     620     */ 
     621    public CTPath2DMoveTo createCTPath2DMoveTo() { 
     622        return new CTPath2DMoveTo(); 
     623    } 
     624 
     625    /** 
     626     * Create an instance of {@link CTPictureLocking } 
     627     *  
     628     */ 
     629    public CTPictureLocking createCTPictureLocking() { 
     630        return new CTPictureLocking(); 
     631    } 
     632 
     633    /** 
     634     * Create an instance of {@link CTTableGrid } 
     635     *  
     636     */ 
     637    public CTTableGrid createCTTableGrid() { 
     638        return new CTTableGrid(); 
     639    } 
     640 
     641    /** 
     642     * Create an instance of {@link CTGrayscaleEffect } 
     643     *  
     644     */ 
     645    public CTGrayscaleEffect createCTGrayscaleEffect() { 
     646        return new CTGrayscaleEffect(); 
     647    } 
     648 
     649    /** 
     650     * Create an instance of {@link CTBackgroundFormatting } 
     651     *  
     652     */ 
     653    public CTBackgroundFormatting createCTBackgroundFormatting() { 
     654        return new CTBackgroundFormatting(); 
     655    } 
     656 
     657    /** 
     658     * Create an instance of {@link CTTextUnderlineFillGroupWrapper } 
     659     *  
     660     */ 
     661    public CTTextUnderlineFillGroupWrapper createCTTextUnderlineFillGroupWrapper() { 
     662        return new CTTextUnderlineFillGroupWrapper(); 
     663    } 
     664 
     665    /** 
     666     * Create an instance of {@link CTShapeStyle } 
     667     *  
     668     */ 
     669    public CTShapeStyle createCTShapeStyle() { 
     670        return new CTShapeStyle(); 
     671    } 
     672 
     673    /** 
     674     * Create an instance of {@link CTConnection } 
     675     *  
     676     */ 
     677    public CTConnection createCTConnection() { 
     678        return new CTConnection(); 
     679    } 
     680 
     681    /** 
     682     * Create an instance of {@link CTPercentage } 
     683     *  
     684     */ 
     685    public CTPercentage createCTPercentage() { 
     686        return new CTPercentage(); 
     687    } 
     688 
     689    /** 
     690     * Create an instance of {@link CTTextUnderlineFillFollowText } 
     691     *  
     692     */ 
     693    public CTTextUnderlineFillFollowText createCTTextUnderlineFillFollowText() { 
     694        return new CTTextUnderlineFillFollowText(); 
     695    } 
     696 
     697    /** 
     698     * Create an instance of {@link CTPath2D } 
     699     *  
     700     */ 
     701    public CTPath2D createCTPath2D() { 
     702        return new CTPath2D(); 
     703    } 
     704 
     705    /** 
     706     * Create an instance of {@link CTGvmlShapeNonVisual } 
     707     *  
     708     */ 
     709    public CTGvmlShapeNonVisual createCTGvmlShapeNonVisual() { 
     710        return new CTGvmlShapeNonVisual(); 
     711    } 
     712 
     713    /** 
     714     * Create an instance of {@link CTDefaultShapeDefinition } 
     715     *  
     716     */ 
     717    public CTDefaultShapeDefinition createCTDefaultShapeDefinition() { 
     718        return new CTDefaultShapeDefinition(); 
     719    } 
     720 
     721    /** 
     722     * Create an instance of {@link CTRelativeOffsetEffect } 
     723     *  
     724     */ 
     725    public CTRelativeOffsetEffect createCTRelativeOffsetEffect() { 
     726        return new CTRelativeOffsetEffect(); 
     727    } 
     728 
     729    /** 
     730     * Create an instance of {@link CTGroupShapeProperties } 
     731     *  
     732     */ 
     733    public CTGroupShapeProperties createCTGroupShapeProperties() { 
     734        return new CTGroupShapeProperties(); 
     735    } 
     736 
     737    /** 
     738     * Create an instance of {@link CTGroupFillProperties } 
     739     *  
     740     */ 
     741    public CTGroupFillProperties createCTGroupFillProperties() { 
     742        return new CTGroupFillProperties(); 
     743    } 
     744 
     745    /** 
     746     * Create an instance of {@link CTBaseStylesOverride.FontScheme } 
     747     *  
     748     */ 
     749    public CTBaseStylesOverride.FontScheme createCTBaseStylesOverrideFontScheme() { 
     750        return new CTBaseStylesOverride.FontScheme(); 
     751    } 
     752 
     753    /** 
     754     * Create an instance of {@link CTTableCol } 
     755     *  
     756     */ 
     757    public CTTableCol createCTTableCol() { 
     758        return new CTTableCol(); 
     759    } 
     760 
     761    /** 
     762     * Create an instance of {@link CTScRgbColor } 
     763     *  
     764     */ 
     765    public CTScRgbColor createCTScRgbColor() { 
     766        return new CTScRgbColor(); 
     767    } 
     768 
     769    /** 
     770     * Create an instance of {@link CTPositiveSize2D } 
     771     *  
     772     */ 
     773    public CTPositiveSize2D createCTPositiveSize2D() { 
     774        return new CTPositiveSize2D(); 
     775    } 
     776 
     777    /** 
     778     * Create an instance of {@link CTEffectContainer } 
     779     *  
     780     */ 
     781    public CTEffectContainer createCTEffectContainer() { 
     782        return new CTEffectContainer(); 
     783    } 
     784 
     785    /** 
     786     * Create an instance of {@link CTDashStopList } 
     787     *  
     788     */ 
     789    public CTDashStopList createCTDashStopList() { 
     790        return new CTDashStopList(); 
     791    } 
     792 
     793    /** 
     794     * Create an instance of {@link CTTableStyleTextStyle } 
     795     *  
     796     */ 
     797    public CTTableStyleTextStyle createCTTableStyleTextStyle() { 
     798        return new CTTableStyleTextStyle(); 
     799    } 
     800 
     801    /** 
     802     * Create an instance of {@link CTBevel } 
     803     *  
     804     */ 
     805    public CTBevel createCTBevel() { 
     806        return new CTBevel(); 
     807    } 
     808 
     809    /** 
     810     * Create an instance of {@link CTTransform2D } 
     811     *  
     812     */ 
     813    public CTTransform2D createCTTransform2D() { 
     814        return new CTTransform2D(); 
     815    } 
     816 
     817    /** 
     818     * Create an instance of {@link CTTextCharacterProperties } 
     819     *  
     820     */ 
     821    public CTTextCharacterProperties createCTTextCharacterProperties() { 
     822        return new CTTextCharacterProperties(); 
     823    } 
     824 
     825    /** 
     826     * Create an instance of {@link CTAlphaModulateFixedEffect } 
     827     *  
     828     */ 
     829    public CTAlphaModulateFixedEffect createCTAlphaModulateFixedEffect() { 
     830        return new CTAlphaModulateFixedEffect(); 
     831    } 
     832 
     833    /** 
     834     * Create an instance of {@link CTPoint2D } 
     835     *  
     836     */ 
     837    public CTPoint2D createCTPoint2D() { 
     838        return new CTPoint2D(); 
     839    } 
     840 
     841    /** 
     842     * Create an instance of {@link CTPresetShadowEffect } 
     843     *  
     844     */ 
     845    public CTPresetShadowEffect createCTPresetShadowEffect() { 
     846        return new CTPresetShadowEffect(); 
     847    } 
     848 
     849    /** 
     850     * Create an instance of {@link CTGeomGuideList } 
     851     *  
     852     */ 
     853    public CTGeomGuideList createCTGeomGuideList() { 
     854        return new CTGeomGuideList(); 
     855    } 
     856 
     857    /** 
     858     * Create an instance of {@link CTAnimationDgmElement } 
     859     *  
     860     */ 
     861    public CTAnimationDgmElement createCTAnimationDgmElement() { 
     862        return new CTAnimationDgmElement(); 
     863    } 
     864 
     865    /** 
     866     * Create an instance of {@link CTTextAutonumberBullet } 
     867     *  
     868     */ 
     869    public CTTextAutonumberBullet createCTTextAutonumberBullet() { 
     870        return new CTTextAutonumberBullet(); 
     871    } 
     872 
     873    /** 
     874     * Create an instance of {@link CTShapeLocking } 
     875     *  
     876     */ 
     877    public CTShapeLocking createCTShapeLocking() { 
     878        return new CTShapeLocking(); 
     879    } 
     880 
     881    /** 
     882     * Create an instance of {@link CTEmptyElement } 
     883     *  
     884     */ 
     885    public CTEmptyElement createCTEmptyElement() { 
     886        return new CTEmptyElement(); 
     887    } 
     888 
     889    /** 
     890     * Create an instance of {@link CTAnimationGraphicalObjectBuildProperties } 
     891     *  
     892     */ 
     893    public CTAnimationGraphicalObjectBuildProperties createCTAnimationGraphicalObjectBuildProperties() { 
     894        return new CTAnimationGraphicalObjectBuildProperties(); 
     895    } 
     896 
     897    /** 
     898     * Create an instance of {@link CTGvmlUseShapeRectangle } 
     899     *  
     900     */ 
     901    public CTGvmlUseShapeRectangle createCTGvmlUseShapeRectangle() { 
     902        return new CTGvmlUseShapeRectangle(); 
     903    } 
     904 
     905    /** 
     906     * Create an instance of {@link CTEffectReference } 
     907     *  
     908     */ 
     909    public CTEffectReference createCTEffectReference() { 
     910        return new CTEffectReference(); 
     911    } 
     912 
     913    /** 
     914     * Create an instance of {@link CTLightRig } 
     915     *  
     916     */ 
     917    public CTLightRig createCTLightRig() { 
     918        return new CTLightRig(); 
     919    } 
     920 
     921    /** 
     922     * Create an instance of {@link CTEffectProperties } 
     923     *  
     924     */ 
     925    public CTEffectProperties createCTEffectProperties() { 
     926        return new CTEffectProperties(); 
     927    } 
     928 
     929    /** 
     930     * Create an instance of {@link CTTextParagraph } 
     931     *  
     932     */ 
     933    public CTTextParagraph createCTTextParagraph() { 
     934        return new CTTextParagraph(); 
     935    } 
     936 
     937    /** 
     938     * Create an instance of {@link CTAdjustHandleList } 
     939     *  
     940     */ 
     941    public CTAdjustHandleList createCTAdjustHandleList() { 
     942        return new CTAdjustHandleList(); 
     943    } 
     944 
     945    /** 
     946     * Create an instance of {@link CTPath2DQuadBezierTo } 
     947     *  
     948     */ 
     949    public CTPath2DQuadBezierTo createCTPath2DQuadBezierTo() { 
     950        return new CTPath2DQuadBezierTo(); 
     951    } 
     952 
     953    /** 
     954     * Create an instance of {@link CTOuterShadowEffect } 
     955     *  
     956     */ 
     957    public CTOuterShadowEffect createCTOuterShadowEffect() { 
     958        return new CTOuterShadowEffect(); 
     959    } 
     960 
     961    /** 
     962     * Create an instance of {@link CTPresetLineDashProperties } 
     963     *  
     964     */ 
     965    public CTPresetLineDashProperties createCTPresetLineDashProperties() { 
     966        return new CTPresetLineDashProperties(); 
     967    } 
     968 
     969    /** 
     970     * Create an instance of {@link CTAlphaInverseEffect } 
     971     *  
     972     */ 
     973    public CTAlphaInverseEffect createCTAlphaInverseEffect() { 
     974        return new CTAlphaInverseEffect(); 
     975    } 
     976 
     977    /** 
     978     * Create an instance of {@link CTPath2DList } 
     979     *  
     980     */ 
     981    public CTPath2DList createCTPath2DList() { 
     982        return new CTPath2DList(); 
     983    } 
     984 
     985    /** 
     986     * Create an instance of {@link CTTextListStyle } 
     987     *  
     988     */ 
     989    public CTTextListStyle createCTTextListStyle() { 
     990        return new CTTextListStyle(); 
     991    } 
     992 
     993    /** 
     994     * Create an instance of {@link CTRelativeRect } 
     995     *  
     996     */ 
     997    public CTRelativeRect createCTRelativeRect() { 
     998        return new CTRelativeRect(); 
     999    } 
     1000 
     1001    /** 
     1002     * Create an instance of {@link CTGvmlGroupShape } 
     1003     *  
     1004     */ 
     1005    public CTGvmlGroupShape createCTGvmlGroupShape() { 
     1006        return new CTGvmlGroupShape(); 
     1007    } 
     1008 
     1009    /** 
     1010     * Create an instance of {@link CTAlphaOutsetEffect } 
     1011     *  
     1012     */ 
     1013    public CTAlphaOutsetEffect createCTAlphaOutsetEffect() { 
     1014        return new CTAlphaOutsetEffect(); 
     1015    } 
     1016 
     1017    /** 
     1018     * Create an instance of {@link CTGvmlGroupShapeNonVisual } 
     1019     *  
     1020     */ 
     1021    public CTGvmlGroupShapeNonVisual createCTGvmlGroupShapeNonVisual() { 
     1022        return new CTGvmlGroupShapeNonVisual(); 
     1023    } 
     1024 
     1025    /** 
     1026     * Create an instance of {@link CTGroupLocking } 
     1027     *  
     1028     */ 
     1029    public CTGroupLocking createCTGroupLocking() { 
     1030        return new CTGroupLocking(); 
     1031    } 
     1032 
     1033    /** 
     1034     * Create an instance of {@link CTColorMappingOverride } 
     1035     *  
     1036     */ 
     1037    public CTColorMappingOverride createCTColorMappingOverride() { 
     1038        return new CTColorMappingOverride(); 
     1039    } 
     1040 
     1041    /** 
     1042     * Create an instance of {@link CTInverseGammaTransform } 
     1043     *  
     1044     */ 
     1045    public CTInverseGammaTransform createCTInverseGammaTransform() { 
     1046        return new CTInverseGammaTransform(); 
     1047    } 
     1048 
     1049    /** 
     1050     * Create an instance of {@link CTBackdrop } 
     1051     *  
     1052     */ 
     1053    public CTBackdrop createCTBackdrop() { 
     1054        return new CTBackdrop(); 
     1055    } 
     1056 
     1057    /** 
     1058     * Create an instance of {@link CTBackgroundFillStyleList } 
     1059     *  
     1060     */ 
     1061    public CTBackgroundFillStyleList createCTBackgroundFillStyleList() { 
     1062        return new CTBackgroundFillStyleList(); 
     1063    } 
     1064 
     1065    /** 
     1066     * Create an instance of {@link CTTextBulletSizePercent } 
     1067     *  
     1068     */ 
     1069    public CTTextBulletSizePercent createCTTextBulletSizePercent() { 
     1070        return new CTTextBulletSizePercent(); 
     1071    } 
     1072 
     1073    /** 
     1074     * Create an instance of {@link CTSoftEdgesEffect } 
     1075     *  
     1076     */ 
     1077    public CTSoftEdgesEffect createCTSoftEdgesEffect() { 
     1078        return new CTSoftEdgesEffect(); 
     1079    } 
     1080 
     1081    /** 
     1082     * Create an instance of {@link FontCollection } 
     1083     *  
     1084     */ 
     1085    public FontCollection createFontCollection() { 
     1086        return new FontCollection(); 
     1087    } 
     1088 
     1089    /** 
     1090     * Create an instance of {@link CTGrayscaleTransform } 
     1091     *  
     1092     */ 
     1093    public CTGrayscaleTransform createCTGrayscaleTransform() { 
     1094        return new CTGrayscaleTransform(); 
     1095    } 
     1096 
     1097    /** 
     1098     * Create an instance of {@link CTPath2DCubicBezierTo } 
     1099     *  
     1100     */ 
     1101    public CTPath2DCubicBezierTo createCTPath2DCubicBezierTo() { 
     1102        return new CTPath2DCubicBezierTo(); 
     1103    } 
     1104 
     1105    /** 
     1106     * Create an instance of {@link Theme } 
     1107     *  
     1108     */ 
     1109    public Theme createTheme() { 
     1110        return new Theme(); 
     1111    } 
     1112 
     1113    /** 
     1114     * Create an instance of {@link CTNonVisualGroupDrawingShapeProps } 
     1115     *  
     1116     */ 
     1117    public CTNonVisualGroupDrawingShapeProps createCTNonVisualGroupDrawingShapeProps() { 
     1118        return new CTNonVisualGroupDrawingShapeProps(); 
     1119    } 
     1120 
     1121    /** 
     1122     * Create an instance of {@link CTEffectStyleItem } 
     1123     *  
     1124     */ 
     1125    public CTEffectStyleItem createCTEffectStyleItem() { 
     1126        return new CTEffectStyleItem(); 
     1127    } 
     1128 
     1129    /** 
     1130     * Create an instance of {@link CTGraphicalObjectFrameLocking } 
     1131     *  
     1132     */ 
     1133    public CTGraphicalObjectFrameLocking createCTGraphicalObjectFrameLocking() { 
     1134        return new CTGraphicalObjectFrameLocking(); 
     1135    } 
     1136 
     1137    /** 
     1138     * Create an instance of {@link CTTextBulletTypefaceFollowText } 
     1139     *  
     1140     */ 
     1141    public CTTextBulletTypefaceFollowText createCTTextBulletTypefaceFollowText() { 
     1142        return new CTTextBulletTypefaceFollowText(); 
     1143    } 
     1144 
     1145    /** 
     1146     * Create an instance of {@link CTFillOverlayEffect } 
     1147     *  
     1148     */ 
     1149    public CTFillOverlayEffect createCTFillOverlayEffect() { 
     1150        return new CTFillOverlayEffect(); 
     1151    } 
     1152 
     1153    /** 
     1154     * Create an instance of {@link CTBlurEffect } 
     1155     *  
     1156     */ 
     1157    public CTBlurEffect createCTBlurEffect() { 
     1158        return new CTBlurEffect(); 
     1159    } 
     1160 
     1161    /** 
     1162     * Create an instance of {@link CTSystemColor } 
     1163     *  
     1164     */ 
     1165    public CTSystemColor createCTSystemColor() { 
     1166        return new CTSystemColor(); 
     1167    } 
     1168 
     1169    /** 
     1170     * Create an instance of {@link CTCustomColorList } 
     1171     *  
     1172     */ 
     1173    public CTCustomColorList createCTCustomColorList() { 
     1174        return new CTCustomColorList(); 
     1175    } 
     1176 
     1177    /** 
     1178     * Create an instance of {@link CTColorSchemeAndMapping } 
     1179     *  
     1180     */ 
     1181    public CTColorSchemeAndMapping createCTColorSchemeAndMapping() { 
     1182        return new CTColorSchemeAndMapping(); 
     1183    } 
     1184 
     1185    /** 
     1186     * Create an instance of {@link CTOfficeArtExtension } 
     1187     *  
     1188     */ 
     1189    public CTOfficeArtExtension createCTOfficeArtExtension() { 
     1190        return new CTOfficeArtExtension(); 
     1191    } 
     1192 
     1193    /** 
     1194     * Create an instance of {@link CTVector3D } 
     1195     *  
     1196     */ 
     1197    public CTVector3D createCTVector3D() { 
     1198        return new CTVector3D(); 
     1199    } 
     1200 
     1201    /** 
     1202     * Create an instance of {@link CTXYAdjustHandle } 
     1203     *  
     1204     */ 
     1205    public CTXYAdjustHandle createCTXYAdjustHandle() { 
     1206        return new CTXYAdjustHandle(); 
     1207    } 
     1208 
     1209    /** 
     1210     * Create an instance of {@link CTTableStyleCellStyle } 
     1211     *  
     1212     */ 
     1213    public CTTableStyleCellStyle createCTTableStyleCellStyle() { 
     1214        return new CTTableStyleCellStyle(); 
     1215    } 
     1216 
     1217    /** 
     1218     * Create an instance of {@link CTTextShapeAutofit } 
     1219     *  
     1220     */ 
     1221    public CTTextShapeAutofit createCTTextShapeAutofit() { 
     1222        return new CTTextShapeAutofit(); 
     1223    } 
     1224 
     1225    /** 
     1226     * Create an instance of {@link CTObjectStyleDefaults } 
     1227     *  
     1228     */ 
     1229    public CTObjectStyleDefaults createCTObjectStyleDefaults() { 
     1230        return new CTObjectStyleDefaults(); 
     1231    } 
     1232 
     1233    /** 
     1234     * Create an instance of {@link CTTablePartStyle } 
     1235     *  
     1236     */ 
     1237    public CTTablePartStyle createCTTablePartStyle() { 
     1238        return new CTTablePartStyle(); 
     1239    } 
     1240 
     1241    /** 
     1242     * Create an instance of {@link CTComplementTransform } 
     1243     *  
     1244     */ 
     1245    public CTComplementTransform createCTComplementTransform() { 
     1246        return new CTComplementTransform(); 
     1247    } 
     1248 
     1249    /** 
     1250     * Create an instance of {@link CTNonVisualGraphicFrameProperties } 
     1251     *  
     1252     */ 
     1253    public CTNonVisualGraphicFrameProperties createCTNonVisualGraphicFrameProperties() { 
     1254        return new CTNonVisualGraphicFrameProperties(); 
     1255    } 
     1256 
     1257    /** 
     1258     * Create an instance of {@link CTPathShadeProperties } 
     1259     *  
     1260     */ 
     1261    public CTPathShadeProperties createCTPathShadeProperties() { 
     1262        return new CTPathShadeProperties(); 
     1263    } 
     1264 
     1265    /** 
     1266     * Create an instance of {@link CTBlip } 
     1267     *  
     1268     */ 
     1269    public CTBlip createCTBlip() { 
     1270        return new CTBlip(); 
     1271    } 
     1272 
     1273    /** 
     1274     * Create an instance of {@link CTNoFillProperties } 
     1275     *  
     1276     */ 
     1277    public CTNoFillProperties createCTNoFillProperties() { 
     1278        return new CTNoFillProperties(); 
     1279    } 
     1280 
     1281    /** 
     1282     * Create an instance of {@link CTGlowEffect } 
     1283     *  
     1284     */ 
     1285    public CTGlowEffect createCTGlowEffect() { 
     1286        return new CTGlowEffect(); 
     1287    } 
     1288 
     1289    /** 
     1290     * Create an instance of {@link CTEmbeddedWAVAudioFile } 
     1291     *  
     1292     */ 
     1293    public CTEmbeddedWAVAudioFile createCTEmbeddedWAVAudioFile() { 
     1294        return new CTEmbeddedWAVAudioFile(); 
     1295    } 
     1296 
     1297    /** 
     1298     * Create an instance of {@link CTInverseTransform } 
     1299     *  
     1300     */ 
     1301    public CTInverseTransform createCTInverseTransform() { 
     1302        return new CTInverseTransform(); 
     1303    } 
     1304 
     1305    /** 
     1306     * Create an instance of {@link CTCustomColor } 
     1307     *  
     1308     */ 
     1309    public CTCustomColor createCTCustomColor() { 
     1310        return new CTCustomColor(); 
     1311    } 
     1312 
     1313    /** 
     1314     * Create an instance of {@link CTAlphaFloorEffect } 
     1315     *  
     1316     */ 
     1317    public CTAlphaFloorEffect createCTAlphaFloorEffect() { 
     1318        return new CTAlphaFloorEffect(); 
     1319    } 
     1320 
     1321    /** 
     1322     * Create an instance of {@link CTStyleMatrix } 
     1323     *  
     1324     */ 
     1325    public CTStyleMatrix createCTStyleMatrix() { 
     1326        return new CTStyleMatrix(); 
     1327    } 
     1328 
     1329    /** 
    901330     * Create an instance of {@link CTNonVisualPictureProperties } 
    911331     *  
     
    961336 
    971337    /** 
    98      * Create an instance of {@link CTTextNormalAutofit } 
    99      *  
    100      */ 
    101     public CTTextNormalAutofit createCTTextNormalAutofit() { 
    102         return new CTTextNormalAutofit(); 
    103     } 
    104  
    105     /** 
    106      * Create an instance of {@link CTPath2DQuadBezierTo } 
    107      *  
    108      */ 
    109     public CTPath2DQuadBezierTo createCTPath2DQuadBezierTo() { 
    110         return new CTPath2DQuadBezierTo(); 
     1338     * Create an instance of {@link CTScene3D } 
     1339     *  
     1340     */ 
     1341    public CTScene3D createCTScene3D() { 
     1342        return new CTScene3D(); 
     1343    } 
     1344 
     1345    /** 
     1346     * Create an instance of {@link CTGvmlGraphicFrameNonVisual } 
     1347     *  
     1348     */ 
     1349    public CTGvmlGraphicFrameNonVisual createCTGvmlGraphicFrameNonVisual() { 
     1350        return new CTGvmlGraphicFrameNonVisual(); 
     1351    } 
     1352 
     1353    /** 
     1354     * Create an instance of {@link CTPath2DArcTo } 
     1355     *  
     1356     */ 
     1357    public CTPath2DArcTo createCTPath2DArcTo() { 
     1358        return new CTPath2DArcTo(); 
     1359    } 
     1360 
     1361    /** 
     1362     * Create an instance of {@link CTTableStyle } 
     1363     *  
     1364     */ 
     1365    public CTTableStyle createCTTableStyle() { 
     1366        return new CTTableStyle(); 
     1367    } 
     1368 
     1369    /** 
     1370     * Create an instance of {@link CTFixedPercentage } 
     1371     *  
     1372     */ 
     1373    public CTFixedPercentage createCTFixedPercentage() { 
     1374        return new CTFixedPercentage(); 
     1375    } 
     1376 
     1377    /** 
     1378     * Create an instance of {@link CTTextParagraphProperties } 
     1379     *  
     1380     */ 
     1381    public CTTextParagraphProperties createCTTextParagraphProperties() { 
     1382        return new CTTextParagraphProperties(); 
     1383    } 
     1384 
     1385    /** 
     1386     * Create an instance of {@link CTTextField } 
     1387     *  
     1388     */ 
     1389    public CTTextField createCTTextField() { 
     1390        return new CTTextField(); 
     1391    } 
     1392 
     1393    /** 
     1394     * Create an instance of {@link CTLineProperties } 
     1395     *  
     1396     */ 
     1397    public CTLineProperties createCTLineProperties() { 
     1398        return new CTLineProperties(); 
     1399    } 
     1400 
     1401    /** 
     1402     * Create an instance of {@link CTColorMRU } 
     1403     *  
     1404     */ 
     1405    public CTColorMRU createCTColorMRU() { 
     1406        return new CTColorMRU(); 
     1407    } 
     1408 
     1409    /** 
     1410     * Create an instance of {@link CTAudioCDTime } 
     1411     *  
     1412     */ 
     1413    public CTAudioCDTime createCTAudioCDTime() { 
     1414        return new CTAudioCDTime(); 
     1415    } 
     1416 
     1417    /** 
     1418     * Create an instance of {@link CTGvmlTextShape } 
     1419     *  
     1420     */ 
     1421    public CTGvmlTextShape createCTGvmlTextShape() { 
     1422        return new CTGvmlTextShape(); 
     1423    } 
     1424 
     1425    /** 
     1426     * Create an instance of {@link Graphic } 
     1427     *  
     1428     */ 
     1429    public Graphic createGraphic() { 
     1430        return new Graphic(); 
     1431    } 
     1432 
     1433    /** 
     1434     * Create an instance of {@link CTSphereCoords } 
     1435     *  
     1436     */ 
     1437    public CTSphereCoords createCTSphereCoords() { 
     1438        return new CTSphereCoords(); 
     1439    } 
     1440 
     1441    /** 
     1442     * Create an instance of {@link CTStyleMatrixReference } 
     1443     *  
     1444     */ 
     1445    public CTStyleMatrixReference createCTStyleMatrixReference() { 
     1446        return new CTStyleMatrixReference(); 
     1447    } 
     1448 
     1449    /** 
     1450     * Create an instance of {@link CTPatternFillProperties } 
     1451     *  
     1452     */ 
     1453    public CTPatternFillProperties createCTPatternFillProperties() { 
     1454        return new CTPatternFillProperties(); 
     1455    } 
     1456 
     1457    /** 
     1458     * Create an instance of {@link CTShape3D } 
     1459     *  
     1460     */ 
     1461    public CTShape3D createCTShape3D() { 
     1462        return new CTShape3D(); 
     1463    } 
     1464 
     1465    /** 
     1466     * Create an instance of {@link TextFont } 
     1467     *  
     1468     */ 
     1469    public TextFont createTextFont() { 
     1470        return new TextFont(); 
     1471    } 
     1472 
     1473    /** 
     1474     * Create an instance of {@link CTNonVisualDrawingShapeProps } 
     1475     *  
     1476     */ 
     1477    public CTNonVisualDrawingShapeProps createCTNonVisualDrawingShapeProps() { 
     1478        return new CTNonVisualDrawingShapeProps(); 
     1479    } 
     1480 
     1481    /** 
     1482     * Create an instance of {@link CTTransformEffect } 
     1483     *  
     1484     */ 
     1485    public CTTransformEffect createCTTransformEffect() { 
     1486        return new CTTransformEffect(); 
     1487    } 
     1488 
     1489    /** 
     1490     * Create an instance of {@link CTHyperlink } 
     1491     *  
     1492     */ 
     1493    public CTHyperlink createCTHyperlink() { 
     1494        return new CTHyperlink(); 
     1495    } 
     1496 
     1497    /** 
     1498     * Create an instance of {@link CTConnectionSite } 
     1499     *  
     1500     */ 
     1501    public CTConnectionSite createCTConnectionSite() { 
     1502        return new CTConnectionSite(); 
     1503    } 
     1504 
     1505    /** 
     1506     * Create an instance of {@link GraphicData } 
     1507     *  
     1508     */ 
     1509    public GraphicData createGraphicData() { 
     1510        return new GraphicData(); 
     1511    } 
     1512 
     1513    /** 
     1514     * Create an instance of {@link BaseStyles } 
     1515     *  
     1516     */ 
     1517    public BaseStyles createBaseStyles() { 
     1518        return new BaseStyles(); 
     1519    } 
     1520 
     1521    /** 
     1522     * Create an instance of {@link CTGroupTransform2D } 
     1523     *  
     1524     */ 
     1525    public CTGroupTransform2D createCTGroupTransform2D() { 
     1526        return new CTGroupTransform2D(); 
     1527    } 
     1528 
     1529    /** 
     1530     * Create an instance of {@link CTInnerShadowEffect } 
     1531     *  
     1532     */ 
     1533    public CTInnerShadowEffect createCTInnerShadowEffect() { 
     1534        return new CTInnerShadowEffect(); 
     1535    } 
     1536 
     1537    /** 
     1538     * Create an instance of {@link CTShapeProperties } 
     1539     *  
     1540     */ 
     1541    public CTShapeProperties createCTShapeProperties() { 
     1542        return new CTShapeProperties(); 
     1543    } 
     1544 
     1545    /** 
     1546     * Create an instance of {@link CTRatio } 
     1547     *  
     1548     */ 
     1549    public CTRatio createCTRatio() { 
     1550        return new CTRatio(); 
     1551    } 
     1552 
     1553    /** 
     1554     * Create an instance of {@link CTPositivePercentage } 
     1555     *  
     1556     */ 
     1557    public CTPositivePercentage createCTPositivePercentage() { 
     1558        return new CTPositivePercentage(); 
     1559    } 
     1560 
     1561    /** 
     1562     * Create an instance of {@link CTDuotoneEffect } 
     1563     *  
     1564     */ 
     1565    public CTDuotoneEffect createCTDuotoneEffect() { 
     1566        return new CTDuotoneEffect(); 
     1567    } 
     1568 
     1569    /** 
     1570     * Create an instance of {@link CTTextBulletColorFollowText } 
     1571     *  
     1572     */ 
     1573    public CTTextBulletColorFollowText createCTTextBulletColorFollowText() { 
     1574        return new CTTextBulletColorFollowText(); 
     1575    } 
     1576 
     1577    /** 
     1578     * Create an instance of {@link CTHSLEffect } 
     1579     *  
     1580     */ 
     1581    public CTHSLEffect createCTHSLEffect() { 
     1582        return new CTHSLEffect(); 
     1583    } 
     1584 
     1585    /** 
     1586     * Create an instance of {@link CTRegularTextRun }