Update JAXB classes with fixed javadocs for java 8 doclint
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1823910 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ac7311994a
commit
b6fc14300b
@ -965,8 +965,6 @@ under the License.
|
||||
|
||||
<target name="generate-geometry" depends="fetch-ooxml-xsds" if="ignoreme">
|
||||
<delete dir="${geometry.output.tmpdir}"/>
|
||||
<!-- taskdef xjc -->
|
||||
<!-- "D:\Program Files\Java\jdk1.6.0_45\bin\xjc" -p org.apache.poi.sl.model.geom.binding -readOnly -Xlocator -mark-generated ooxml-schemas\dml-shapeGeometry.xsd -->
|
||||
<unzip src="${ooxml.lib}/${ooxml.xsds.izip.1}" dest="${geometry.output.tmpdir}"/>
|
||||
<exec executable="${env.JAVA_HOME}/bin/xjc">
|
||||
<arg value="-p"/>
|
||||
@ -974,8 +972,8 @@ under the License.
|
||||
<arg value="-b"/>
|
||||
<arg file="src/types/definitions/dml-shapeGeometry.xjb"/>
|
||||
<arg value="-readOnly"/>
|
||||
<arg value="-npa"/>
|
||||
<arg value="-no-header"/>
|
||||
<!--arg value="-npa"/ -->
|
||||
<!--arg value="-mark-generated"/ -->
|
||||
<!--arg value="-Xlocator"/ -->
|
||||
<arg file="${geometry.output.tmpdir}/dml-shapeGeometry.xsd"/>
|
||||
@ -991,6 +989,9 @@ under the License.
|
||||
<fileset dir="${geometry.output.tmpdir}" includes="**/*.java"/>
|
||||
<filterchain>
|
||||
<concatfilter prepend="${geometry.output.tmpdir}/apache-license.txt"/>
|
||||
<!-- fix javadocs for java 8 doclint -->
|
||||
<replaceregex pattern="&lt;(.*)>" replace="&lt;\1&gt;" flags="g"/>
|
||||
<fixcrlf eol="lf"/>
|
||||
</filterchain>
|
||||
</copy>
|
||||
</target>
|
||||
|
@ -29,25 +29,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_AdjPoint2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_AdjPoint2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_AdjPoint2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_AdjPoint2D")
|
||||
public class CTAdjPoint2D {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "x", required = true)
|
||||
protected String x;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "y", required = true)
|
||||
protected String y;
|
||||
|
||||
/**
|
||||
|
@ -32,29 +32,29 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_AdjustHandleList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||
* <element name="ahXY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_XYAdjustHandle"/>
|
||||
* <element name="ahPolar" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PolarAdjustHandle"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_AdjustHandleList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||
* <element name="ahXY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_XYAdjustHandle"/>
|
||||
* <element name="ahPolar" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PolarAdjustHandle"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_AdjustHandleList", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_AdjustHandleList", propOrder = {
|
||||
"ahXYOrAhPolar"
|
||||
})
|
||||
public class CTAdjustHandleList {
|
||||
|
||||
@XmlElements({
|
||||
@XmlElement(name = "ahXY", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTXYAdjustHandle.class),
|
||||
@XmlElement(name = "ahPolar", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPolarAdjustHandle.class)
|
||||
@XmlElement(name = "ahXY", type = CTXYAdjustHandle.class),
|
||||
@XmlElement(name = "ahPolar", type = CTPolarAdjustHandle.class)
|
||||
})
|
||||
protected List<Object> ahXYOrAhPolar;
|
||||
|
||||
@ -83,7 +83,7 @@ public class CTAdjustHandleList {
|
||||
*/
|
||||
public List<Object> getAhXYOrAhPolar() {
|
||||
if (ahXYOrAhPolar == null) {
|
||||
ahXYOrAhPolar = new ArrayList<>();
|
||||
ahXYOrAhPolar = new ArrayList<Object>();
|
||||
}
|
||||
return this.ahXYOrAhPolar;
|
||||
}
|
||||
|
@ -29,22 +29,22 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Angle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Angle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Angle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Angle")
|
||||
public class CTAngle {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
protected int val;
|
||||
|
||||
/**
|
||||
|
@ -19,7 +19,6 @@ package org.apache.poi.sl.draw.binding;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -29,21 +28,21 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Color">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorChoice"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Color">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorChoice"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Color", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Color", propOrder = {
|
||||
"scrgbClr",
|
||||
"srgbClr",
|
||||
"hslClr",
|
||||
@ -53,17 +52,11 @@ import javax.xml.bind.annotation.XmlType;
|
||||
})
|
||||
public class CTColor {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTScRgbColor scrgbClr;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTSRgbColor srgbClr;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTHslColor hslClr;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTSystemColor sysClr;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTSchemeColor schemeClr;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTPresetColor prstClr;
|
||||
|
||||
/**
|
||||
|
@ -32,32 +32,32 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_ColorMRU">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorChoice" maxOccurs="10" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_ColorMRU">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorChoice" maxOccurs="10" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_ColorMRU", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_ColorMRU", propOrder = {
|
||||
"egColorChoice"
|
||||
})
|
||||
public class CTColorMRU {
|
||||
|
||||
@XmlElements({
|
||||
@XmlElement(name = "prstClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPresetColor.class),
|
||||
@XmlElement(name = "sysClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSystemColor.class),
|
||||
@XmlElement(name = "hslClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTHslColor.class),
|
||||
@XmlElement(name = "srgbClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSRgbColor.class),
|
||||
@XmlElement(name = "scrgbClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTScRgbColor.class),
|
||||
@XmlElement(name = "schemeClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSchemeColor.class)
|
||||
@XmlElement(name = "scrgbClr", type = CTScRgbColor.class),
|
||||
@XmlElement(name = "srgbClr", type = CTSRgbColor.class),
|
||||
@XmlElement(name = "hslClr", type = CTHslColor.class),
|
||||
@XmlElement(name = "sysClr", type = CTSystemColor.class),
|
||||
@XmlElement(name = "schemeClr", type = CTSchemeColor.class),
|
||||
@XmlElement(name = "prstClr", type = CTPresetColor.class)
|
||||
})
|
||||
protected List<Object> egColorChoice;
|
||||
|
||||
@ -79,18 +79,18 @@ public class CTColorMRU {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CTPresetColor }
|
||||
* {@link CTSystemColor }
|
||||
* {@link CTHslColor }
|
||||
* {@link CTSRgbColor }
|
||||
* {@link CTScRgbColor }
|
||||
* {@link CTSRgbColor }
|
||||
* {@link CTHslColor }
|
||||
* {@link CTSystemColor }
|
||||
* {@link CTSchemeColor }
|
||||
* {@link CTPresetColor }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<Object> getEGColorChoice() {
|
||||
if (egColorChoice == null) {
|
||||
egColorChoice = new ArrayList<>();
|
||||
egColorChoice = new ArrayList<Object>();
|
||||
}
|
||||
return this.egColorChoice;
|
||||
}
|
||||
|
@ -28,18 +28,18 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_ComplementTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_ComplementTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_ComplementTransform", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_ComplementTransform")
|
||||
public class CTComplementTransform {
|
||||
|
||||
|
||||
|
@ -30,25 +30,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Connection">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="id" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_DrawingElementId" />
|
||||
* <attribute name="idx" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Connection">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="id" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_DrawingElementId" />
|
||||
* <attribute name="idx" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Connection", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Connection")
|
||||
public class CTConnection {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "id", required = true)
|
||||
protected long id;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "idx", required = true)
|
||||
@XmlSchemaType(name = "unsignedInt")
|
||||
protected long idx;
|
||||
|
||||
|
@ -30,29 +30,29 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_ConnectionSite">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* <attribute name="ang" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_ConnectionSite">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* <attribute name="ang" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_ConnectionSite", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_ConnectionSite", propOrder = {
|
||||
"pos"
|
||||
})
|
||||
public class CTConnectionSite {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTAdjPoint2D pos;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "ang", required = true)
|
||||
protected String ang;
|
||||
|
||||
/**
|
||||
|
@ -21,7 +21,6 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -31,26 +30,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_ConnectionSiteList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="cxn" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ConnectionSite" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_ConnectionSiteList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="cxn" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ConnectionSite" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_ConnectionSiteList", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_ConnectionSiteList", propOrder = {
|
||||
"cxn"
|
||||
})
|
||||
public class CTConnectionSiteList {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected List<CTConnectionSite> cxn;
|
||||
|
||||
/**
|
||||
@ -77,7 +75,7 @@ public class CTConnectionSiteList {
|
||||
*/
|
||||
public List<CTConnectionSite> getCxn() {
|
||||
if (cxn == null) {
|
||||
cxn = new ArrayList<>();
|
||||
cxn = new ArrayList<CTConnectionSite>();
|
||||
}
|
||||
return this.cxn;
|
||||
}
|
||||
|
@ -29,26 +29,26 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_CustomGeometry2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* <element name="gdLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* <element name="ahLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjustHandleList" minOccurs="0"/>
|
||||
* <element name="cxnLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ConnectionSiteList" minOccurs="0"/>
|
||||
* <element name="rect" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomRect" minOccurs="0"/>
|
||||
* <element name="pathLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DList"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_CustomGeometry2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* <element name="gdLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* <element name="ahLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjustHandleList" minOccurs="0"/>
|
||||
* <element name="cxnLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_ConnectionSiteList" minOccurs="0"/>
|
||||
* <element name="rect" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomRect" minOccurs="0"/>
|
||||
* <element name="pathLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DList"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_CustomGeometry2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_CustomGeometry2D", propOrder = {
|
||||
"avLst",
|
||||
"gdLst",
|
||||
"ahLst",
|
||||
@ -58,17 +58,12 @@ import javax.xml.bind.annotation.XmlType;
|
||||
})
|
||||
public class CTCustomGeometry2D {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTGeomGuideList avLst;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTGeomGuideList gdLst;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTAdjustHandleList ahLst;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTConnectionSiteList cxnLst;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTGeomRect rect;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTPath2DList pathLst;
|
||||
|
||||
/**
|
||||
|
@ -29,28 +29,28 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_EmbeddedWAVAudioFile">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}embed use="required""/>
|
||||
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="builtIn" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_EmbeddedWAVAudioFile">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}embed use="required""/>
|
||||
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="builtIn" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_EmbeddedWAVAudioFile", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_EmbeddedWAVAudioFile")
|
||||
public class CTEmbeddedWAVAudioFile {
|
||||
|
||||
@XmlAttribute(namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships", required = true)
|
||||
@XmlAttribute(name = "embed", namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships", required = true)
|
||||
protected String embed;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "name")
|
||||
protected String name;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "builtIn")
|
||||
protected Boolean builtIn;
|
||||
|
||||
/**
|
||||
|
@ -29,22 +29,22 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_FixedPercentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_FixedPercentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_FixedPercentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_FixedPercentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_FixedPercentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_FixedPercentage")
|
||||
public class CTFixedPercentage {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
protected int val;
|
||||
|
||||
/**
|
||||
|
@ -28,18 +28,18 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_GammaTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_GammaTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_GammaTransform", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_GammaTransform")
|
||||
public class CTGammaTransform {
|
||||
|
||||
|
||||
|
@ -31,26 +31,26 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_GeomGuide">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="name" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="fmla" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideFormula" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_GeomGuide">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="name" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="fmla" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideFormula" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_GeomGuide", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_GeomGuide")
|
||||
public class CTGeomGuide {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "name", required = true)
|
||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||
protected String name;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "fmla", required = true)
|
||||
protected String fmla;
|
||||
|
||||
/**
|
||||
|
@ -21,7 +21,6 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -31,26 +30,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_GeomGuideList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="gd" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuide" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_GeomGuideList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="gd" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuide" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_GeomGuideList", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_GeomGuideList", propOrder = {
|
||||
"gd"
|
||||
})
|
||||
public class CTGeomGuideList {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected List<CTGeomGuide> gd;
|
||||
|
||||
/**
|
||||
@ -77,7 +75,7 @@ public class CTGeomGuideList {
|
||||
*/
|
||||
public List<CTGeomGuide> getGd() {
|
||||
if (gd == null) {
|
||||
gd = new ArrayList<>();
|
||||
gd = new ArrayList<CTGeomGuide>();
|
||||
}
|
||||
return this.gd;
|
||||
}
|
||||
|
@ -29,31 +29,31 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_GeomRect">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="l" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="t" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_GeomRect">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="l" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="t" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_GeomRect", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_GeomRect")
|
||||
public class CTGeomRect {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "l", required = true)
|
||||
protected String l;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "t", required = true)
|
||||
protected String t;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "r", required = true)
|
||||
protected String r;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "b", required = true)
|
||||
protected String b;
|
||||
|
||||
/**
|
||||
|
@ -28,18 +28,18 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_GrayscaleTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_GrayscaleTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_GrayscaleTransform", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_GrayscaleTransform")
|
||||
public class CTGrayscaleTransform {
|
||||
|
||||
|
||||
|
@ -20,7 +20,6 @@ package org.apache.poi.sl.draw.binding;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -30,27 +29,27 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_GroupTransform2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>
|
||||
* <element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>
|
||||
* <element name="chOff" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>
|
||||
* <element name="chExt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" />
|
||||
* <attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* <attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_GroupTransform2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>
|
||||
* <element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>
|
||||
* <element name="chOff" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>
|
||||
* <element name="chExt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" />
|
||||
* <attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* <attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_GroupTransform2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_GroupTransform2D", propOrder = {
|
||||
"off",
|
||||
"ext",
|
||||
"chOff",
|
||||
@ -58,19 +57,15 @@ import javax.xml.bind.annotation.XmlType;
|
||||
})
|
||||
public class CTGroupTransform2D {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTPoint2D off;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTPositiveSize2D ext;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTPoint2D chOff;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTPositiveSize2D chExt;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "rot")
|
||||
protected Integer rot;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "flipH")
|
||||
protected Boolean flipH;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "flipV")
|
||||
protected Boolean flipV;
|
||||
|
||||
/**
|
||||
|
@ -34,64 +34,64 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_HslColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="hue" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* <attribute name="sat" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* <attribute name="lum" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_HslColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="hue" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* <attribute name="sat" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* <attribute name="lum" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_HslColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_HslColor", propOrder = {
|
||||
"egColorTransform"
|
||||
})
|
||||
public class CTHslColor {
|
||||
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> egColorTransform;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "hue", required = true)
|
||||
protected int hue;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "sat", required = true)
|
||||
protected int sat;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "lum", required = true)
|
||||
protected int lum;
|
||||
|
||||
/**
|
||||
@ -112,40 +112,40 @@ public class CTHslColor {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<JAXBElement<?>> getEGColorTransform() {
|
||||
if (egColorTransform == null) {
|
||||
egColorTransform = new ArrayList<>();
|
||||
egColorTransform = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
return this.egColorTransform;
|
||||
}
|
||||
|
@ -20,7 +20,6 @@ package org.apache.poi.sl.draw.binding;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -30,54 +29,52 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Hyperlink">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="snd" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_EmbeddedWAVAudioFile" minOccurs="0"/>
|
||||
* <element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}id"/>
|
||||
* <attribute name="invalidUrl" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="action" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="tgtFrame" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="tooltip" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="history" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
|
||||
* <attribute name="highlightClick" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* <attribute name="endSnd" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Hyperlink">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="snd" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_EmbeddedWAVAudioFile" minOccurs="0"/>
|
||||
* <element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}id"/>
|
||||
* <attribute name="invalidUrl" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="action" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="tgtFrame" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="tooltip" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
|
||||
* <attribute name="history" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
|
||||
* <attribute name="highlightClick" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* <attribute name="endSnd" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Hyperlink", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Hyperlink", propOrder = {
|
||||
"snd",
|
||||
"extLst"
|
||||
})
|
||||
public class CTHyperlink {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTEmbeddedWAVAudioFile snd;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTOfficeArtExtensionList extLst;
|
||||
@XmlAttribute(namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships")
|
||||
@XmlAttribute(name = "id", namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships")
|
||||
protected String id;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "invalidUrl")
|
||||
protected String invalidUrl;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "action")
|
||||
protected String action;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "tgtFrame")
|
||||
protected String tgtFrame;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "tooltip")
|
||||
protected String tooltip;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "history")
|
||||
protected Boolean history;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "highlightClick")
|
||||
protected Boolean highlightClick;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "endSnd")
|
||||
protected Boolean endSnd;
|
||||
|
||||
/**
|
||||
|
@ -28,18 +28,18 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_InverseGammaTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_InverseGammaTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_InverseGammaTransform", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_InverseGammaTransform")
|
||||
public class CTInverseGammaTransform {
|
||||
|
||||
|
||||
|
@ -28,18 +28,18 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_InverseTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_InverseTransform">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_InverseTransform", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_InverseTransform")
|
||||
public class CTInverseTransform {
|
||||
|
||||
|
||||
|
@ -34,29 +34,29 @@ import org.w3c.dom.Element;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_OfficeArtExtension">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <any processContents='lax'/>
|
||||
* </sequence>
|
||||
* <attribute name="uri" type="{http://www.w3.org/2001/XMLSchema}token" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_OfficeArtExtension">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <any processContents='lax'/>
|
||||
* </sequence>
|
||||
* <attribute name="uri" type="{http://www.w3.org/2001/XMLSchema}token" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_OfficeArtExtension", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_OfficeArtExtension", propOrder = {
|
||||
"any"
|
||||
})
|
||||
public class CTOfficeArtExtension {
|
||||
|
||||
@XmlAnyElement(lax = true)
|
||||
protected Object any;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "uri")
|
||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||
@XmlSchemaType(name = "token")
|
||||
protected String uri;
|
||||
|
@ -21,7 +21,6 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -31,26 +30,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_OfficeArtExtensionList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_OfficeArtExtensionList"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_OfficeArtExtensionList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_OfficeArtExtensionList"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_OfficeArtExtensionList", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_OfficeArtExtensionList", propOrder = {
|
||||
"ext"
|
||||
})
|
||||
public class CTOfficeArtExtensionList {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected List<CTOfficeArtExtension> ext;
|
||||
|
||||
/**
|
||||
@ -77,7 +75,7 @@ public class CTOfficeArtExtensionList {
|
||||
*/
|
||||
public List<CTOfficeArtExtension> getExt() {
|
||||
if (ext == null) {
|
||||
ext = new ArrayList<>();
|
||||
ext = new ArrayList<CTOfficeArtExtension>();
|
||||
}
|
||||
return this.ext;
|
||||
}
|
||||
|
@ -33,53 +33,53 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||
* <element name="close" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DClose"/>
|
||||
* <element name="moveTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DMoveTo"/>
|
||||
* <element name="lnTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DLineTo"/>
|
||||
* <element name="arcTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DArcTo"/>
|
||||
* <element name="quadBezTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DQuadBezierTo"/>
|
||||
* <element name="cubicBezTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DCubicBezierTo"/>
|
||||
* </choice>
|
||||
* <attribute name="w" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" default="0" />
|
||||
* <attribute name="h" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" default="0" />
|
||||
* <attribute name="fill" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PathFillMode" default="norm" />
|
||||
* <attribute name="stroke" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
|
||||
* <attribute name="extrusionOk" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice maxOccurs="unbounded" minOccurs="0">
|
||||
* <element name="close" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DClose"/>
|
||||
* <element name="moveTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DMoveTo"/>
|
||||
* <element name="lnTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DLineTo"/>
|
||||
* <element name="arcTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DArcTo"/>
|
||||
* <element name="quadBezTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DQuadBezierTo"/>
|
||||
* <element name="cubicBezTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DCubicBezierTo"/>
|
||||
* </choice>
|
||||
* <attribute name="w" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" default="0" />
|
||||
* <attribute name="h" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" default="0" />
|
||||
* <attribute name="fill" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PathFillMode" default="norm" />
|
||||
* <attribute name="stroke" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
|
||||
* <attribute name="extrusionOk" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Path2D", propOrder = {
|
||||
"closeOrMoveToOrLnTo"
|
||||
})
|
||||
public class CTPath2D {
|
||||
|
||||
@XmlElements({
|
||||
@XmlElement(name = "lnTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DLineTo.class),
|
||||
@XmlElement(name = "close", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DClose.class),
|
||||
@XmlElement(name = "cubicBezTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DCubicBezierTo.class),
|
||||
@XmlElement(name = "quadBezTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DQuadBezierTo.class),
|
||||
@XmlElement(name = "arcTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DArcTo.class),
|
||||
@XmlElement(name = "moveTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DMoveTo.class)
|
||||
@XmlElement(name = "close", type = CTPath2DClose.class),
|
||||
@XmlElement(name = "moveTo", type = CTPath2DMoveTo.class),
|
||||
@XmlElement(name = "lnTo", type = CTPath2DLineTo.class),
|
||||
@XmlElement(name = "arcTo", type = CTPath2DArcTo.class),
|
||||
@XmlElement(name = "quadBezTo", type = CTPath2DQuadBezierTo.class),
|
||||
@XmlElement(name = "cubicBezTo", type = CTPath2DCubicBezierTo.class)
|
||||
})
|
||||
protected List<Object> closeOrMoveToOrLnTo;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "w")
|
||||
protected Long w;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "h")
|
||||
protected Long h;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "fill")
|
||||
protected STPathFillMode fill;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "stroke")
|
||||
protected Boolean stroke;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "extrusionOk")
|
||||
protected Boolean extrusionOk;
|
||||
|
||||
/**
|
||||
@ -100,18 +100,18 @@ public class CTPath2D {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CTPath2DLineTo }
|
||||
* {@link CTPath2DClose }
|
||||
* {@link CTPath2DCubicBezierTo }
|
||||
* {@link CTPath2DQuadBezierTo }
|
||||
* {@link CTPath2DArcTo }
|
||||
* {@link CTPath2DMoveTo }
|
||||
* {@link CTPath2DLineTo }
|
||||
* {@link CTPath2DArcTo }
|
||||
* {@link CTPath2DQuadBezierTo }
|
||||
* {@link CTPath2DCubicBezierTo }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<Object> getCloseOrMoveToOrLnTo() {
|
||||
if (closeOrMoveToOrLnTo == null) {
|
||||
closeOrMoveToOrLnTo = new ArrayList<>();
|
||||
closeOrMoveToOrLnTo = new ArrayList<Object>();
|
||||
}
|
||||
return this.closeOrMoveToOrLnTo;
|
||||
}
|
||||
|
@ -29,31 +29,31 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2DArcTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="wR" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="hR" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="stAng" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* <attribute name="swAng" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2DArcTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="wR" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="hR" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="stAng" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* <attribute name="swAng" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2DArcTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Path2DArcTo")
|
||||
public class CTPath2DArcTo {
|
||||
|
||||
@XmlAttribute(name = "wR", required = true)
|
||||
protected String wr;
|
||||
@XmlAttribute(name = "hR", required = true)
|
||||
protected String hr;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "stAng", required = true)
|
||||
protected String stAng;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "swAng", required = true)
|
||||
protected String swAng;
|
||||
|
||||
/**
|
||||
|
@ -28,18 +28,18 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2DClose">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2DClose">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2DClose", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Path2DClose")
|
||||
public class CTPath2DClose {
|
||||
|
||||
|
||||
|
@ -31,26 +31,26 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2DCubicBezierTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D" maxOccurs="3" minOccurs="3"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2DCubicBezierTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D" maxOccurs="3" minOccurs="3"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2DCubicBezierTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Path2DCubicBezierTo", propOrder = {
|
||||
"pt"
|
||||
})
|
||||
public class CTPath2DCubicBezierTo {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected List<CTAdjPoint2D> pt;
|
||||
|
||||
/**
|
||||
@ -77,7 +77,7 @@ public class CTPath2DCubicBezierTo {
|
||||
*/
|
||||
public List<CTAdjPoint2D> getPt() {
|
||||
if (pt == null) {
|
||||
pt = new ArrayList<>();
|
||||
pt = new ArrayList<CTAdjPoint2D>();
|
||||
}
|
||||
return this.pt;
|
||||
}
|
||||
|
@ -29,26 +29,26 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2DLineTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2DLineTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2DLineTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Path2DLineTo", propOrder = {
|
||||
"pt"
|
||||
})
|
||||
public class CTPath2DLineTo {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTAdjPoint2D pt;
|
||||
|
||||
/**
|
||||
|
@ -21,7 +21,6 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -31,26 +30,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2DList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="path" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2D" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2DList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="path" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2D" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2DList", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Path2DList", propOrder = {
|
||||
"path"
|
||||
})
|
||||
public class CTPath2DList {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected List<CTPath2D> path;
|
||||
|
||||
/**
|
||||
@ -77,7 +75,7 @@ public class CTPath2DList {
|
||||
*/
|
||||
public List<CTPath2D> getPath() {
|
||||
if (path == null) {
|
||||
path = new ArrayList<>();
|
||||
path = new ArrayList<CTPath2D>();
|
||||
}
|
||||
return this.path;
|
||||
}
|
||||
|
@ -29,26 +29,26 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2DMoveTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2DMoveTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2DMoveTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Path2DMoveTo", propOrder = {
|
||||
"pt"
|
||||
})
|
||||
public class CTPath2DMoveTo {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTAdjPoint2D pt;
|
||||
|
||||
/**
|
||||
|
@ -31,26 +31,26 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Path2DQuadBezierTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D" maxOccurs="2" minOccurs="2"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Path2DQuadBezierTo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D" maxOccurs="2" minOccurs="2"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Path2DQuadBezierTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Path2DQuadBezierTo", propOrder = {
|
||||
"pt"
|
||||
})
|
||||
public class CTPath2DQuadBezierTo {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected List<CTAdjPoint2D> pt;
|
||||
|
||||
/**
|
||||
@ -77,7 +77,7 @@ public class CTPath2DQuadBezierTo {
|
||||
*/
|
||||
public List<CTAdjPoint2D> getPt() {
|
||||
if (pt == null) {
|
||||
pt = new ArrayList<>();
|
||||
pt = new ArrayList<CTAdjPoint2D>();
|
||||
}
|
||||
return this.pt;
|
||||
}
|
||||
|
@ -29,22 +29,22 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Percentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Percentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Percentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Percentage")
|
||||
public class CTPercentage {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
protected int val;
|
||||
|
||||
/**
|
||||
|
@ -29,25 +29,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Point2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Point2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Point2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Point2D")
|
||||
public class CTPoint2D {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "x", required = true)
|
||||
protected long x;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "y", required = true)
|
||||
protected long y;
|
||||
|
||||
/**
|
||||
|
@ -29,28 +29,28 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Point3D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="z" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Point3D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="z" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Point3D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Point3D")
|
||||
public class CTPoint3D {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "x", required = true)
|
||||
protected long x;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "y", required = true)
|
||||
protected long y;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "z", required = true)
|
||||
protected long z;
|
||||
|
||||
/**
|
||||
|
@ -32,46 +32,46 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PolarAdjustHandle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* <attribute name="gdRefR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="maxR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="gdRefAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* <attribute name="maxAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PolarAdjustHandle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* <attribute name="gdRefR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="maxR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="gdRefAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* <attribute name="maxAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PolarAdjustHandle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_PolarAdjustHandle", propOrder = {
|
||||
"pos"
|
||||
})
|
||||
public class CTPolarAdjustHandle {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTAdjPoint2D pos;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "gdRefR")
|
||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||
protected String gdRefR;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "minR")
|
||||
protected String minR;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "maxR")
|
||||
protected String maxR;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "gdRefAng")
|
||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||
protected String gdRefAng;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "minAng")
|
||||
protected String minAng;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "maxAng")
|
||||
protected String maxAng;
|
||||
|
||||
/**
|
||||
|
@ -29,22 +29,22 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PositiveFixedAngle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PositiveFixedAngle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PositiveFixedAngle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_PositiveFixedAngle")
|
||||
public class CTPositiveFixedAngle {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
protected int val;
|
||||
|
||||
/**
|
||||
|
@ -29,22 +29,22 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PositiveFixedPercentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedPercentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PositiveFixedPercentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedPercentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PositiveFixedPercentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_PositiveFixedPercentage")
|
||||
public class CTPositiveFixedPercentage {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
protected int val;
|
||||
|
||||
/**
|
||||
|
@ -29,22 +29,22 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PositivePercentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositivePercentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PositivePercentage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositivePercentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PositivePercentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_PositivePercentage")
|
||||
public class CTPositivePercentage {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
protected int val;
|
||||
|
||||
/**
|
||||
|
@ -29,25 +29,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PositiveSize2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="cx" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" />
|
||||
* <attribute name="cy" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PositiveSize2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="cx" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" />
|
||||
* <attribute name="cy" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PositiveSize2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_PositiveSize2D")
|
||||
public class CTPositiveSize2D {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "cx", required = true)
|
||||
protected long cx;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "cy", required = true)
|
||||
protected long cy;
|
||||
|
||||
/**
|
||||
|
@ -34,58 +34,58 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PresetColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PresetColorVal" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PresetColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PresetColorVal" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PresetColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_PresetColor", propOrder = {
|
||||
"egColorTransform"
|
||||
})
|
||||
public class CTPresetColor {
|
||||
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> egColorTransform;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "val")
|
||||
protected STPresetColorVal val;
|
||||
|
||||
/**
|
||||
@ -106,32 +106,32 @@ public class CTPresetColor {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
*
|
||||
@ -139,7 +139,7 @@ public class CTPresetColor {
|
||||
*/
|
||||
public List<JAXBElement<?>> getEGColorTransform() {
|
||||
if (egColorTransform == null) {
|
||||
egColorTransform = new ArrayList<>();
|
||||
egColorTransform = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
return this.egColorTransform;
|
||||
}
|
||||
|
@ -20,7 +20,6 @@ package org.apache.poi.sl.draw.binding;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -30,29 +29,28 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PresetGeometry2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="prst" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_ShapeType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PresetGeometry2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="prst" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_ShapeType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PresetGeometry2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_PresetGeometry2D", propOrder = {
|
||||
"avLst"
|
||||
})
|
||||
public class CTPresetGeometry2D {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTGeomGuideList avLst;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "prst", required = true)
|
||||
protected STShapeType prst;
|
||||
|
||||
/**
|
||||
|
@ -20,7 +20,6 @@ package org.apache.poi.sl.draw.binding;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -30,29 +29,28 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_PresetTextShape">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="prst" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_TextShapeType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_PresetTextShape">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="prst" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_TextShapeType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_PresetTextShape", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_PresetTextShape", propOrder = {
|
||||
"avLst"
|
||||
})
|
||||
public class CTPresetTextShape {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTGeomGuideList avLst;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "prst", required = true)
|
||||
protected STTextShapeType prst;
|
||||
|
||||
/**
|
||||
|
@ -29,25 +29,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Ratio">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="n" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* <attribute name="d" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Ratio">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="n" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* <attribute name="d" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Ratio", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Ratio")
|
||||
public class CTRatio {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "n", required = true)
|
||||
protected long n;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "d", required = true)
|
||||
protected long d;
|
||||
|
||||
/**
|
||||
|
@ -29,31 +29,31 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_RelativeRect">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="l" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* <attribute name="t" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* <attribute name="r" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* <attribute name="b" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_RelativeRect">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="l" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* <attribute name="t" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* <attribute name="r" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* <attribute name="b" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_RelativeRect", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_RelativeRect")
|
||||
public class CTRelativeRect {
|
||||
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "l")
|
||||
protected Integer l;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "t")
|
||||
protected Integer t;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "r")
|
||||
protected Integer r;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "b")
|
||||
protected Integer b;
|
||||
|
||||
/**
|
||||
|
@ -36,58 +36,58 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_SRgbColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_HexBinary3" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_SRgbColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_HexBinary3" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_SRgbColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_SRgbColor", propOrder = {
|
||||
"egColorTransform"
|
||||
})
|
||||
public class CTSRgbColor {
|
||||
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> egColorTransform;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
@XmlJavaTypeAdapter(HexBinaryAdapter.class)
|
||||
protected byte[] val;
|
||||
|
||||
@ -109,40 +109,40 @@ public class CTSRgbColor {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<JAXBElement<?>> getEGColorTransform() {
|
||||
if (egColorTransform == null) {
|
||||
egColorTransform = new ArrayList<>();
|
||||
egColorTransform = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
return this.egColorTransform;
|
||||
}
|
||||
@ -176,7 +176,7 @@ public class CTSRgbColor {
|
||||
*
|
||||
*/
|
||||
public void setVal(byte[] value) {
|
||||
this.val = (value != null) ? value.clone() : null;
|
||||
this.val = value;
|
||||
}
|
||||
|
||||
public boolean isSetVal() {
|
||||
|
@ -34,64 +34,64 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_ScRgbColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* <attribute name="g" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* <attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_ScRgbColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* <attribute name="g" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* <attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_ScRgbColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_ScRgbColor", propOrder = {
|
||||
"egColorTransform"
|
||||
})
|
||||
public class CTScRgbColor {
|
||||
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> egColorTransform;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "r", required = true)
|
||||
protected int r;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "g", required = true)
|
||||
protected int g;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "b", required = true)
|
||||
protected int b;
|
||||
|
||||
/**
|
||||
@ -112,40 +112,40 @@ public class CTScRgbColor {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<JAXBElement<?>> getEGColorTransform() {
|
||||
if (egColorTransform == null) {
|
||||
egColorTransform = new ArrayList<>();
|
||||
egColorTransform = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
return this.egColorTransform;
|
||||
}
|
||||
|
@ -29,30 +29,30 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Scale2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="sx" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Ratio"/>
|
||||
* <element name="sy" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Ratio"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Scale2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="sx" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Ratio"/>
|
||||
* <element name="sy" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Ratio"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Scale2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Scale2D", propOrder = {
|
||||
"sx",
|
||||
"sy"
|
||||
})
|
||||
public class CTScale2D {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTRatio sx;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTRatio sy;
|
||||
|
||||
/**
|
||||
|
@ -34,58 +34,58 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_SchemeColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_SchemeColorVal" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_SchemeColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_SchemeColorVal" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_SchemeColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_SchemeColor", propOrder = {
|
||||
"egColorTransform"
|
||||
})
|
||||
public class CTSchemeColor {
|
||||
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> egColorTransform;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
protected STSchemeColorVal val;
|
||||
|
||||
/**
|
||||
@ -106,40 +106,40 @@ public class CTSchemeColor {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<JAXBElement<?>> getEGColorTransform() {
|
||||
if (egColorTransform == null) {
|
||||
egColorTransform = new ArrayList<>();
|
||||
egColorTransform = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
return this.egColorTransform;
|
||||
}
|
||||
|
@ -29,28 +29,28 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_SphereCoords">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="lat" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* <attribute name="lon" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* <attribute name="rev" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_SphereCoords">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="lat" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* <attribute name="lon" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* <attribute name="rev" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_SphereCoords", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_SphereCoords")
|
||||
public class CTSphereCoords {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "lat", required = true)
|
||||
protected int lat;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "lon", required = true)
|
||||
protected int lon;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "rev", required = true)
|
||||
protected int rev;
|
||||
|
||||
/**
|
||||
|
@ -37,62 +37,62 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_SystemColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_SystemColorVal" />
|
||||
* <attribute name="lastClr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_HexBinary3" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_SystemColor">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_SystemColorVal" />
|
||||
* <attribute name="lastClr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_HexBinary3" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_SystemColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_SystemColor", propOrder = {
|
||||
"egColorTransform"
|
||||
})
|
||||
public class CTSystemColor {
|
||||
|
||||
@XmlElementRefs({
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)
|
||||
@XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),
|
||||
@XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)
|
||||
})
|
||||
protected List<JAXBElement<?>> egColorTransform;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "val", required = true)
|
||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||
protected String val;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "lastClr")
|
||||
@XmlJavaTypeAdapter(HexBinaryAdapter.class)
|
||||
protected byte[] lastClr;
|
||||
|
||||
@ -114,40 +114,40 @@ public class CTSystemColor {
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTAngle }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}
|
||||
* {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<JAXBElement<?>> getEGColorTransform() {
|
||||
if (egColorTransform == null) {
|
||||
egColorTransform = new ArrayList<>();
|
||||
egColorTransform = new ArrayList<JAXBElement<?>>();
|
||||
}
|
||||
return this.egColorTransform;
|
||||
}
|
||||
@ -209,7 +209,7 @@ public class CTSystemColor {
|
||||
*
|
||||
*/
|
||||
public void setLastClr(byte[] value) {
|
||||
this.lastClr = (value != null) ? value.clone() : null;
|
||||
this.lastClr = value;
|
||||
}
|
||||
|
||||
public boolean isSetLastClr() {
|
||||
|
@ -20,7 +20,6 @@ package org.apache.poi.sl.draw.binding;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
@ -30,39 +29,37 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Transform2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>
|
||||
* <element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" />
|
||||
* <attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* <attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Transform2D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>
|
||||
* <element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" />
|
||||
* <attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* <attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Transform2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_Transform2D", propOrder = {
|
||||
"off",
|
||||
"ext"
|
||||
})
|
||||
public class CTTransform2D {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTPoint2D off;
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
protected CTPositiveSize2D ext;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "rot")
|
||||
protected Integer rot;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "flipH")
|
||||
protected Boolean flipH;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "flipV")
|
||||
protected Boolean flipV;
|
||||
|
||||
/**
|
||||
|
@ -29,28 +29,28 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_Vector3D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="dx" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="dy" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="dz" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_Vector3D">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <attribute name="dx" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="dy" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* <attribute name="dz" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_Vector3D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "CT_Vector3D")
|
||||
public class CTVector3D {
|
||||
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "dx", required = true)
|
||||
protected long dx;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "dy", required = true)
|
||||
protected long dy;
|
||||
@XmlAttribute(required = true)
|
||||
@XmlAttribute(name = "dz", required = true)
|
||||
protected long dz;
|
||||
|
||||
/**
|
||||
|
@ -32,46 +32,46 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CT_XYAdjustHandle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* <attribute name="gdRefX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="maxX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="gdRefY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="maxY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* <complexType name="CT_XYAdjustHandle">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>
|
||||
* </sequence>
|
||||
* <attribute name="gdRefX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="maxX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="gdRefY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />
|
||||
* <attribute name="minY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* <attribute name="maxY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CT_XYAdjustHandle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {
|
||||
@XmlType(name = "CT_XYAdjustHandle", propOrder = {
|
||||
"pos"
|
||||
})
|
||||
public class CTXYAdjustHandle {
|
||||
|
||||
@XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)
|
||||
@XmlElement(required = true)
|
||||
protected CTAdjPoint2D pos;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "gdRefX")
|
||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||
protected String gdRefX;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "minX")
|
||||
protected String minX;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "maxX")
|
||||
protected String maxX;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "gdRefY")
|
||||
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
|
||||
protected String gdRefY;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "minY")
|
||||
protected String minY;
|
||||
@XmlAttribute
|
||||
@XmlAttribute(name = "maxY")
|
||||
protected String maxY;
|
||||
|
||||
/**
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -28,25 +28,25 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ST_BlackWhiteMode">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="clr"/>
|
||||
* <enumeration value="auto"/>
|
||||
* <enumeration value="gray"/>
|
||||
* <enumeration value="ltGray"/>
|
||||
* <enumeration value="invGray"/>
|
||||
* <enumeration value="grayWhite"/>
|
||||
* <enumeration value="blackGray"/>
|
||||
* <enumeration value="blackWhite"/>
|
||||
* <enumeration value="black"/>
|
||||
* <enumeration value="white"/>
|
||||
* <enumeration value="hidden"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* <simpleType name="ST_BlackWhiteMode">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="clr"/>
|
||||
* <enumeration value="auto"/>
|
||||
* <enumeration value="gray"/>
|
||||
* <enumeration value="ltGray"/>
|
||||
* <enumeration value="invGray"/>
|
||||
* <enumeration value="grayWhite"/>
|
||||
* <enumeration value="blackGray"/>
|
||||
* <enumeration value="blackWhite"/>
|
||||
* <enumeration value="black"/>
|
||||
* <enumeration value="white"/>
|
||||
* <enumeration value="hidden"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ST_BlackWhiteMode", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "ST_BlackWhiteMode")
|
||||
@XmlEnum
|
||||
public enum STBlackWhiteMode {
|
||||
|
||||
|
@ -28,20 +28,20 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ST_PathFillMode">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="none"/>
|
||||
* <enumeration value="norm"/>
|
||||
* <enumeration value="lighten"/>
|
||||
* <enumeration value="lightenLess"/>
|
||||
* <enumeration value="darken"/>
|
||||
* <enumeration value="darkenLess"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* <simpleType name="ST_PathFillMode">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="none"/>
|
||||
* <enumeration value="norm"/>
|
||||
* <enumeration value="lighten"/>
|
||||
* <enumeration value="lightenLess"/>
|
||||
* <enumeration value="darken"/>
|
||||
* <enumeration value="darkenLess"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ST_PathFillMode", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "ST_PathFillMode")
|
||||
@XmlEnum
|
||||
public enum STPathFillMode {
|
||||
|
||||
|
@ -28,154 +28,154 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ST_PresetColorVal">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="aliceBlue"/>
|
||||
* <enumeration value="antiqueWhite"/>
|
||||
* <enumeration value="aqua"/>
|
||||
* <enumeration value="aquamarine"/>
|
||||
* <enumeration value="azure"/>
|
||||
* <enumeration value="beige"/>
|
||||
* <enumeration value="bisque"/>
|
||||
* <enumeration value="black"/>
|
||||
* <enumeration value="blanchedAlmond"/>
|
||||
* <enumeration value="blue"/>
|
||||
* <enumeration value="blueViolet"/>
|
||||
* <enumeration value="brown"/>
|
||||
* <enumeration value="burlyWood"/>
|
||||
* <enumeration value="cadetBlue"/>
|
||||
* <enumeration value="chartreuse"/>
|
||||
* <enumeration value="chocolate"/>
|
||||
* <enumeration value="coral"/>
|
||||
* <enumeration value="cornflowerBlue"/>
|
||||
* <enumeration value="cornsilk"/>
|
||||
* <enumeration value="crimson"/>
|
||||
* <enumeration value="cyan"/>
|
||||
* <enumeration value="dkBlue"/>
|
||||
* <enumeration value="dkCyan"/>
|
||||
* <enumeration value="dkGoldenrod"/>
|
||||
* <enumeration value="dkGray"/>
|
||||
* <enumeration value="dkGreen"/>
|
||||
* <enumeration value="dkKhaki"/>
|
||||
* <enumeration value="dkMagenta"/>
|
||||
* <enumeration value="dkOliveGreen"/>
|
||||
* <enumeration value="dkOrange"/>
|
||||
* <enumeration value="dkOrchid"/>
|
||||
* <enumeration value="dkRed"/>
|
||||
* <enumeration value="dkSalmon"/>
|
||||
* <enumeration value="dkSeaGreen"/>
|
||||
* <enumeration value="dkSlateBlue"/>
|
||||
* <enumeration value="dkSlateGray"/>
|
||||
* <enumeration value="dkTurquoise"/>
|
||||
* <enumeration value="dkViolet"/>
|
||||
* <enumeration value="deepPink"/>
|
||||
* <enumeration value="deepSkyBlue"/>
|
||||
* <enumeration value="dimGray"/>
|
||||
* <enumeration value="dodgerBlue"/>
|
||||
* <enumeration value="firebrick"/>
|
||||
* <enumeration value="floralWhite"/>
|
||||
* <enumeration value="forestGreen"/>
|
||||
* <enumeration value="fuchsia"/>
|
||||
* <enumeration value="gainsboro"/>
|
||||
* <enumeration value="ghostWhite"/>
|
||||
* <enumeration value="gold"/>
|
||||
* <enumeration value="goldenrod"/>
|
||||
* <enumeration value="gray"/>
|
||||
* <enumeration value="green"/>
|
||||
* <enumeration value="greenYellow"/>
|
||||
* <enumeration value="honeydew"/>
|
||||
* <enumeration value="hotPink"/>
|
||||
* <enumeration value="indianRed"/>
|
||||
* <enumeration value="indigo"/>
|
||||
* <enumeration value="ivory"/>
|
||||
* <enumeration value="khaki"/>
|
||||
* <enumeration value="lavender"/>
|
||||
* <enumeration value="lavenderBlush"/>
|
||||
* <enumeration value="lawnGreen"/>
|
||||
* <enumeration value="lemonChiffon"/>
|
||||
* <enumeration value="ltBlue"/>
|
||||
* <enumeration value="ltCoral"/>
|
||||
* <enumeration value="ltCyan"/>
|
||||
* <enumeration value="ltGoldenrodYellow"/>
|
||||
* <enumeration value="ltGray"/>
|
||||
* <enumeration value="ltGreen"/>
|
||||
* <enumeration value="ltPink"/>
|
||||
* <enumeration value="ltSalmon"/>
|
||||
* <enumeration value="ltSeaGreen"/>
|
||||
* <enumeration value="ltSkyBlue"/>
|
||||
* <enumeration value="ltSlateGray"/>
|
||||
* <enumeration value="ltSteelBlue"/>
|
||||
* <enumeration value="ltYellow"/>
|
||||
* <enumeration value="lime"/>
|
||||
* <enumeration value="limeGreen"/>
|
||||
* <enumeration value="linen"/>
|
||||
* <enumeration value="magenta"/>
|
||||
* <enumeration value="maroon"/>
|
||||
* <enumeration value="medAquamarine"/>
|
||||
* <enumeration value="medBlue"/>
|
||||
* <enumeration value="medOrchid"/>
|
||||
* <enumeration value="medPurple"/>
|
||||
* <enumeration value="medSeaGreen"/>
|
||||
* <enumeration value="medSlateBlue"/>
|
||||
* <enumeration value="medSpringGreen"/>
|
||||
* <enumeration value="medTurquoise"/>
|
||||
* <enumeration value="medVioletRed"/>
|
||||
* <enumeration value="midnightBlue"/>
|
||||
* <enumeration value="mintCream"/>
|
||||
* <enumeration value="mistyRose"/>
|
||||
* <enumeration value="moccasin"/>
|
||||
* <enumeration value="navajoWhite"/>
|
||||
* <enumeration value="navy"/>
|
||||
* <enumeration value="oldLace"/>
|
||||
* <enumeration value="olive"/>
|
||||
* <enumeration value="oliveDrab"/>
|
||||
* <enumeration value="orange"/>
|
||||
* <enumeration value="orangeRed"/>
|
||||
* <enumeration value="orchid"/>
|
||||
* <enumeration value="paleGoldenrod"/>
|
||||
* <enumeration value="paleGreen"/>
|
||||
* <enumeration value="paleTurquoise"/>
|
||||
* <enumeration value="paleVioletRed"/>
|
||||
* <enumeration value="papayaWhip"/>
|
||||
* <enumeration value="peachPuff"/>
|
||||
* <enumeration value="peru"/>
|
||||
* <enumeration value="pink"/>
|
||||
* <enumeration value="plum"/>
|
||||
* <enumeration value="powderBlue"/>
|
||||
* <enumeration value="purple"/>
|
||||
* <enumeration value="red"/>
|
||||
* <enumeration value="rosyBrown"/>
|
||||
* <enumeration value="royalBlue"/>
|
||||
* <enumeration value="saddleBrown"/>
|
||||
* <enumeration value="salmon"/>
|
||||
* <enumeration value="sandyBrown"/>
|
||||
* <enumeration value="seaGreen"/>
|
||||
* <enumeration value="seaShell"/>
|
||||
* <enumeration value="sienna"/>
|
||||
* <enumeration value="silver"/>
|
||||
* <enumeration value="skyBlue"/>
|
||||
* <enumeration value="slateBlue"/>
|
||||
* <enumeration value="slateGray"/>
|
||||
* <enumeration value="snow"/>
|
||||
* <enumeration value="springGreen"/>
|
||||
* <enumeration value="steelBlue"/>
|
||||
* <enumeration value="tan"/>
|
||||
* <enumeration value="teal"/>
|
||||
* <enumeration value="thistle"/>
|
||||
* <enumeration value="tomato"/>
|
||||
* <enumeration value="turquoise"/>
|
||||
* <enumeration value="violet"/>
|
||||
* <enumeration value="wheat"/>
|
||||
* <enumeration value="white"/>
|
||||
* <enumeration value="whiteSmoke"/>
|
||||
* <enumeration value="yellow"/>
|
||||
* <enumeration value="yellowGreen"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* <simpleType name="ST_PresetColorVal">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="aliceBlue"/>
|
||||
* <enumeration value="antiqueWhite"/>
|
||||
* <enumeration value="aqua"/>
|
||||
* <enumeration value="aquamarine"/>
|
||||
* <enumeration value="azure"/>
|
||||
* <enumeration value="beige"/>
|
||||
* <enumeration value="bisque"/>
|
||||
* <enumeration value="black"/>
|
||||
* <enumeration value="blanchedAlmond"/>
|
||||
* <enumeration value="blue"/>
|
||||
* <enumeration value="blueViolet"/>
|
||||
* <enumeration value="brown"/>
|
||||
* <enumeration value="burlyWood"/>
|
||||
* <enumeration value="cadetBlue"/>
|
||||
* <enumeration value="chartreuse"/>
|
||||
* <enumeration value="chocolate"/>
|
||||
* <enumeration value="coral"/>
|
||||
* <enumeration value="cornflowerBlue"/>
|
||||
* <enumeration value="cornsilk"/>
|
||||
* <enumeration value="crimson"/>
|
||||
* <enumeration value="cyan"/>
|
||||
* <enumeration value="dkBlue"/>
|
||||
* <enumeration value="dkCyan"/>
|
||||
* <enumeration value="dkGoldenrod"/>
|
||||
* <enumeration value="dkGray"/>
|
||||
* <enumeration value="dkGreen"/>
|
||||
* <enumeration value="dkKhaki"/>
|
||||
* <enumeration value="dkMagenta"/>
|
||||
* <enumeration value="dkOliveGreen"/>
|
||||
* <enumeration value="dkOrange"/>
|
||||
* <enumeration value="dkOrchid"/>
|
||||
* <enumeration value="dkRed"/>
|
||||
* <enumeration value="dkSalmon"/>
|
||||
* <enumeration value="dkSeaGreen"/>
|
||||
* <enumeration value="dkSlateBlue"/>
|
||||
* <enumeration value="dkSlateGray"/>
|
||||
* <enumeration value="dkTurquoise"/>
|
||||
* <enumeration value="dkViolet"/>
|
||||
* <enumeration value="deepPink"/>
|
||||
* <enumeration value="deepSkyBlue"/>
|
||||
* <enumeration value="dimGray"/>
|
||||
* <enumeration value="dodgerBlue"/>
|
||||
* <enumeration value="firebrick"/>
|
||||
* <enumeration value="floralWhite"/>
|
||||
* <enumeration value="forestGreen"/>
|
||||
* <enumeration value="fuchsia"/>
|
||||
* <enumeration value="gainsboro"/>
|
||||
* <enumeration value="ghostWhite"/>
|
||||
* <enumeration value="gold"/>
|
||||
* <enumeration value="goldenrod"/>
|
||||
* <enumeration value="gray"/>
|
||||
* <enumeration value="green"/>
|
||||
* <enumeration value="greenYellow"/>
|
||||
* <enumeration value="honeydew"/>
|
||||
* <enumeration value="hotPink"/>
|
||||
* <enumeration value="indianRed"/>
|
||||
* <enumeration value="indigo"/>
|
||||
* <enumeration value="ivory"/>
|
||||
* <enumeration value="khaki"/>
|
||||
* <enumeration value="lavender"/>
|
||||
* <enumeration value="lavenderBlush"/>
|
||||
* <enumeration value="lawnGreen"/>
|
||||
* <enumeration value="lemonChiffon"/>
|
||||
* <enumeration value="ltBlue"/>
|
||||
* <enumeration value="ltCoral"/>
|
||||
* <enumeration value="ltCyan"/>
|
||||
* <enumeration value="ltGoldenrodYellow"/>
|
||||
* <enumeration value="ltGray"/>
|
||||
* <enumeration value="ltGreen"/>
|
||||
* <enumeration value="ltPink"/>
|
||||
* <enumeration value="ltSalmon"/>
|
||||
* <enumeration value="ltSeaGreen"/>
|
||||
* <enumeration value="ltSkyBlue"/>
|
||||
* <enumeration value="ltSlateGray"/>
|
||||
* <enumeration value="ltSteelBlue"/>
|
||||
* <enumeration value="ltYellow"/>
|
||||
* <enumeration value="lime"/>
|
||||
* <enumeration value="limeGreen"/>
|
||||
* <enumeration value="linen"/>
|
||||
* <enumeration value="magenta"/>
|
||||
* <enumeration value="maroon"/>
|
||||
* <enumeration value="medAquamarine"/>
|
||||
* <enumeration value="medBlue"/>
|
||||
* <enumeration value="medOrchid"/>
|
||||
* <enumeration value="medPurple"/>
|
||||
* <enumeration value="medSeaGreen"/>
|
||||
* <enumeration value="medSlateBlue"/>
|
||||
* <enumeration value="medSpringGreen"/>
|
||||
* <enumeration value="medTurquoise"/>
|
||||
* <enumeration value="medVioletRed"/>
|
||||
* <enumeration value="midnightBlue"/>
|
||||
* <enumeration value="mintCream"/>
|
||||
* <enumeration value="mistyRose"/>
|
||||
* <enumeration value="moccasin"/>
|
||||
* <enumeration value="navajoWhite"/>
|
||||
* <enumeration value="navy"/>
|
||||
* <enumeration value="oldLace"/>
|
||||
* <enumeration value="olive"/>
|
||||
* <enumeration value="oliveDrab"/>
|
||||
* <enumeration value="orange"/>
|
||||
* <enumeration value="orangeRed"/>
|
||||
* <enumeration value="orchid"/>
|
||||
* <enumeration value="paleGoldenrod"/>
|
||||
* <enumeration value="paleGreen"/>
|
||||
* <enumeration value="paleTurquoise"/>
|
||||
* <enumeration value="paleVioletRed"/>
|
||||
* <enumeration value="papayaWhip"/>
|
||||
* <enumeration value="peachPuff"/>
|
||||
* <enumeration value="peru"/>
|
||||
* <enumeration value="pink"/>
|
||||
* <enumeration value="plum"/>
|
||||
* <enumeration value="powderBlue"/>
|
||||
* <enumeration value="purple"/>
|
||||
* <enumeration value="red"/>
|
||||
* <enumeration value="rosyBrown"/>
|
||||
* <enumeration value="royalBlue"/>
|
||||
* <enumeration value="saddleBrown"/>
|
||||
* <enumeration value="salmon"/>
|
||||
* <enumeration value="sandyBrown"/>
|
||||
* <enumeration value="seaGreen"/>
|
||||
* <enumeration value="seaShell"/>
|
||||
* <enumeration value="sienna"/>
|
||||
* <enumeration value="silver"/>
|
||||
* <enumeration value="skyBlue"/>
|
||||
* <enumeration value="slateBlue"/>
|
||||
* <enumeration value="slateGray"/>
|
||||
* <enumeration value="snow"/>
|
||||
* <enumeration value="springGreen"/>
|
||||
* <enumeration value="steelBlue"/>
|
||||
* <enumeration value="tan"/>
|
||||
* <enumeration value="teal"/>
|
||||
* <enumeration value="thistle"/>
|
||||
* <enumeration value="tomato"/>
|
||||
* <enumeration value="turquoise"/>
|
||||
* <enumeration value="violet"/>
|
||||
* <enumeration value="wheat"/>
|
||||
* <enumeration value="white"/>
|
||||
* <enumeration value="whiteSmoke"/>
|
||||
* <enumeration value="yellow"/>
|
||||
* <enumeration value="yellowGreen"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ST_PresetColorVal", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "ST_PresetColorVal")
|
||||
@XmlEnum
|
||||
public enum STPresetColorVal {
|
||||
|
||||
|
@ -28,23 +28,23 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ST_RectAlignment">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="tl"/>
|
||||
* <enumeration value="t"/>
|
||||
* <enumeration value="tr"/>
|
||||
* <enumeration value="l"/>
|
||||
* <enumeration value="ctr"/>
|
||||
* <enumeration value="r"/>
|
||||
* <enumeration value="bl"/>
|
||||
* <enumeration value="b"/>
|
||||
* <enumeration value="br"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* <simpleType name="ST_RectAlignment">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="tl"/>
|
||||
* <enumeration value="t"/>
|
||||
* <enumeration value="tr"/>
|
||||
* <enumeration value="l"/>
|
||||
* <enumeration value="ctr"/>
|
||||
* <enumeration value="r"/>
|
||||
* <enumeration value="bl"/>
|
||||
* <enumeration value="b"/>
|
||||
* <enumeration value="br"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ST_RectAlignment", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "ST_RectAlignment")
|
||||
@XmlEnum
|
||||
public enum STRectAlignment {
|
||||
|
||||
|
@ -28,31 +28,31 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ST_SchemeColorVal">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="bg1"/>
|
||||
* <enumeration value="tx1"/>
|
||||
* <enumeration value="bg2"/>
|
||||
* <enumeration value="tx2"/>
|
||||
* <enumeration value="accent1"/>
|
||||
* <enumeration value="accent2"/>
|
||||
* <enumeration value="accent3"/>
|
||||
* <enumeration value="accent4"/>
|
||||
* <enumeration value="accent5"/>
|
||||
* <enumeration value="accent6"/>
|
||||
* <enumeration value="hlink"/>
|
||||
* <enumeration value="folHlink"/>
|
||||
* <enumeration value="phClr"/>
|
||||
* <enumeration value="dk1"/>
|
||||
* <enumeration value="lt1"/>
|
||||
* <enumeration value="dk2"/>
|
||||
* <enumeration value="lt2"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* <simpleType name="ST_SchemeColorVal">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="bg1"/>
|
||||
* <enumeration value="tx1"/>
|
||||
* <enumeration value="bg2"/>
|
||||
* <enumeration value="tx2"/>
|
||||
* <enumeration value="accent1"/>
|
||||
* <enumeration value="accent2"/>
|
||||
* <enumeration value="accent3"/>
|
||||
* <enumeration value="accent4"/>
|
||||
* <enumeration value="accent5"/>
|
||||
* <enumeration value="accent6"/>
|
||||
* <enumeration value="hlink"/>
|
||||
* <enumeration value="folHlink"/>
|
||||
* <enumeration value="phClr"/>
|
||||
* <enumeration value="dk1"/>
|
||||
* <enumeration value="lt1"/>
|
||||
* <enumeration value="dk2"/>
|
||||
* <enumeration value="lt2"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ST_SchemeColorVal", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "ST_SchemeColorVal")
|
||||
@XmlEnum
|
||||
public enum STSchemeColorVal {
|
||||
|
||||
|
@ -28,201 +28,201 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ST_ShapeType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="line"/>
|
||||
* <enumeration value="lineInv"/>
|
||||
* <enumeration value="triangle"/>
|
||||
* <enumeration value="rtTriangle"/>
|
||||
* <enumeration value="rect"/>
|
||||
* <enumeration value="diamond"/>
|
||||
* <enumeration value="parallelogram"/>
|
||||
* <enumeration value="trapezoid"/>
|
||||
* <enumeration value="nonIsoscelesTrapezoid"/>
|
||||
* <enumeration value="pentagon"/>
|
||||
* <enumeration value="hexagon"/>
|
||||
* <enumeration value="heptagon"/>
|
||||
* <enumeration value="octagon"/>
|
||||
* <enumeration value="decagon"/>
|
||||
* <enumeration value="dodecagon"/>
|
||||
* <enumeration value="star4"/>
|
||||
* <enumeration value="star5"/>
|
||||
* <enumeration value="star6"/>
|
||||
* <enumeration value="star7"/>
|
||||
* <enumeration value="star8"/>
|
||||
* <enumeration value="star10"/>
|
||||
* <enumeration value="star12"/>
|
||||
* <enumeration value="star16"/>
|
||||
* <enumeration value="star24"/>
|
||||
* <enumeration value="star32"/>
|
||||
* <enumeration value="roundRect"/>
|
||||
* <enumeration value="round1Rect"/>
|
||||
* <enumeration value="round2SameRect"/>
|
||||
* <enumeration value="round2DiagRect"/>
|
||||
* <enumeration value="snipRoundRect"/>
|
||||
* <enumeration value="snip1Rect"/>
|
||||
* <enumeration value="snip2SameRect"/>
|
||||
* <enumeration value="snip2DiagRect"/>
|
||||
* <enumeration value="plaque"/>
|
||||
* <enumeration value="ellipse"/>
|
||||
* <enumeration value="teardrop"/>
|
||||
* <enumeration value="homePlate"/>
|
||||
* <enumeration value="chevron"/>
|
||||
* <enumeration value="pieWedge"/>
|
||||
* <enumeration value="pie"/>
|
||||
* <enumeration value="blockArc"/>
|
||||
* <enumeration value="donut"/>
|
||||
* <enumeration value="noSmoking"/>
|
||||
* <enumeration value="rightArrow"/>
|
||||
* <enumeration value="leftArrow"/>
|
||||
* <enumeration value="upArrow"/>
|
||||
* <enumeration value="downArrow"/>
|
||||
* <enumeration value="stripedRightArrow"/>
|
||||
* <enumeration value="notchedRightArrow"/>
|
||||
* <enumeration value="bentUpArrow"/>
|
||||
* <enumeration value="leftRightArrow"/>
|
||||
* <enumeration value="upDownArrow"/>
|
||||
* <enumeration value="leftUpArrow"/>
|
||||
* <enumeration value="leftRightUpArrow"/>
|
||||
* <enumeration value="quadArrow"/>
|
||||
* <enumeration value="leftArrowCallout"/>
|
||||
* <enumeration value="rightArrowCallout"/>
|
||||
* <enumeration value="upArrowCallout"/>
|
||||
* <enumeration value="downArrowCallout"/>
|
||||
* <enumeration value="leftRightArrowCallout"/>
|
||||
* <enumeration value="upDownArrowCallout"/>
|
||||
* <enumeration value="quadArrowCallout"/>
|
||||
* <enumeration value="bentArrow"/>
|
||||
* <enumeration value="uturnArrow"/>
|
||||
* <enumeration value="circularArrow"/>
|
||||
* <enumeration value="leftCircularArrow"/>
|
||||
* <enumeration value="leftRightCircularArrow"/>
|
||||
* <enumeration value="curvedRightArrow"/>
|
||||
* <enumeration value="curvedLeftArrow"/>
|
||||
* <enumeration value="curvedUpArrow"/>
|
||||
* <enumeration value="curvedDownArrow"/>
|
||||
* <enumeration value="swooshArrow"/>
|
||||
* <enumeration value="cube"/>
|
||||
* <enumeration value="can"/>
|
||||
* <enumeration value="lightningBolt"/>
|
||||
* <enumeration value="heart"/>
|
||||
* <enumeration value="sun"/>
|
||||
* <enumeration value="moon"/>
|
||||
* <enumeration value="smileyFace"/>
|
||||
* <enumeration value="irregularSeal1"/>
|
||||
* <enumeration value="irregularSeal2"/>
|
||||
* <enumeration value="foldedCorner"/>
|
||||
* <enumeration value="bevel"/>
|
||||
* <enumeration value="frame"/>
|
||||
* <enumeration value="halfFrame"/>
|
||||
* <enumeration value="corner"/>
|
||||
* <enumeration value="diagStripe"/>
|
||||
* <enumeration value="chord"/>
|
||||
* <enumeration value="arc"/>
|
||||
* <enumeration value="leftBracket"/>
|
||||
* <enumeration value="rightBracket"/>
|
||||
* <enumeration value="leftBrace"/>
|
||||
* <enumeration value="rightBrace"/>
|
||||
* <enumeration value="bracketPair"/>
|
||||
* <enumeration value="bracePair"/>
|
||||
* <enumeration value="straightConnector1"/>
|
||||
* <enumeration value="bentConnector2"/>
|
||||
* <enumeration value="bentConnector3"/>
|
||||
* <enumeration value="bentConnector4"/>
|
||||
* <enumeration value="bentConnector5"/>
|
||||
* <enumeration value="curvedConnector2"/>
|
||||
* <enumeration value="curvedConnector3"/>
|
||||
* <enumeration value="curvedConnector4"/>
|
||||
* <enumeration value="curvedConnector5"/>
|
||||
* <enumeration value="callout1"/>
|
||||
* <enumeration value="callout2"/>
|
||||
* <enumeration value="callout3"/>
|
||||
* <enumeration value="accentCallout1"/>
|
||||
* <enumeration value="accentCallout2"/>
|
||||
* <enumeration value="accentCallout3"/>
|
||||
* <enumeration value="borderCallout1"/>
|
||||
* <enumeration value="borderCallout2"/>
|
||||
* <enumeration value="borderCallout3"/>
|
||||
* <enumeration value="accentBorderCallout1"/>
|
||||
* <enumeration value="accentBorderCallout2"/>
|
||||
* <enumeration value="accentBorderCallout3"/>
|
||||
* <enumeration value="wedgeRectCallout"/>
|
||||
* <enumeration value="wedgeRoundRectCallout"/>
|
||||
* <enumeration value="wedgeEllipseCallout"/>
|
||||
* <enumeration value="cloudCallout"/>
|
||||
* <enumeration value="cloud"/>
|
||||
* <enumeration value="ribbon"/>
|
||||
* <enumeration value="ribbon2"/>
|
||||
* <enumeration value="ellipseRibbon"/>
|
||||
* <enumeration value="ellipseRibbon2"/>
|
||||
* <enumeration value="leftRightRibbon"/>
|
||||
* <enumeration value="verticalScroll"/>
|
||||
* <enumeration value="horizontalScroll"/>
|
||||
* <enumeration value="wave"/>
|
||||
* <enumeration value="doubleWave"/>
|
||||
* <enumeration value="plus"/>
|
||||
* <enumeration value="flowChartProcess"/>
|
||||
* <enumeration value="flowChartDecision"/>
|
||||
* <enumeration value="flowChartInputOutput"/>
|
||||
* <enumeration value="flowChartPredefinedProcess"/>
|
||||
* <enumeration value="flowChartInternalStorage"/>
|
||||
* <enumeration value="flowChartDocument"/>
|
||||
* <enumeration value="flowChartMultidocument"/>
|
||||
* <enumeration value="flowChartTerminator"/>
|
||||
* <enumeration value="flowChartPreparation"/>
|
||||
* <enumeration value="flowChartManualInput"/>
|
||||
* <enumeration value="flowChartManualOperation"/>
|
||||
* <enumeration value="flowChartConnector"/>
|
||||
* <enumeration value="flowChartPunchedCard"/>
|
||||
* <enumeration value="flowChartPunchedTape"/>
|
||||
* <enumeration value="flowChartSummingJunction"/>
|
||||
* <enumeration value="flowChartOr"/>
|
||||
* <enumeration value="flowChartCollate"/>
|
||||
* <enumeration value="flowChartSort"/>
|
||||
* <enumeration value="flowChartExtract"/>
|
||||
* <enumeration value="flowChartMerge"/>
|
||||
* <enumeration value="flowChartOfflineStorage"/>
|
||||
* <enumeration value="flowChartOnlineStorage"/>
|
||||
* <enumeration value="flowChartMagneticTape"/>
|
||||
* <enumeration value="flowChartMagneticDisk"/>
|
||||
* <enumeration value="flowChartMagneticDrum"/>
|
||||
* <enumeration value="flowChartDisplay"/>
|
||||
* <enumeration value="flowChartDelay"/>
|
||||
* <enumeration value="flowChartAlternateProcess"/>
|
||||
* <enumeration value="flowChartOffpageConnector"/>
|
||||
* <enumeration value="actionButtonBlank"/>
|
||||
* <enumeration value="actionButtonHome"/>
|
||||
* <enumeration value="actionButtonHelp"/>
|
||||
* <enumeration value="actionButtonInformation"/>
|
||||
* <enumeration value="actionButtonForwardNext"/>
|
||||
* <enumeration value="actionButtonBackPrevious"/>
|
||||
* <enumeration value="actionButtonEnd"/>
|
||||
* <enumeration value="actionButtonBeginning"/>
|
||||
* <enumeration value="actionButtonReturn"/>
|
||||
* <enumeration value="actionButtonDocument"/>
|
||||
* <enumeration value="actionButtonSound"/>
|
||||
* <enumeration value="actionButtonMovie"/>
|
||||
* <enumeration value="gear6"/>
|
||||
* <enumeration value="gear9"/>
|
||||
* <enumeration value="funnel"/>
|
||||
* <enumeration value="mathPlus"/>
|
||||
* <enumeration value="mathMinus"/>
|
||||
* <enumeration value="mathMultiply"/>
|
||||
* <enumeration value="mathDivide"/>
|
||||
* <enumeration value="mathEqual"/>
|
||||
* <enumeration value="mathNotEqual"/>
|
||||
* <enumeration value="cornerTabs"/>
|
||||
* <enumeration value="squareTabs"/>
|
||||
* <enumeration value="plaqueTabs"/>
|
||||
* <enumeration value="chartX"/>
|
||||
* <enumeration value="chartStar"/>
|
||||
* <enumeration value="chartPlus"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* <simpleType name="ST_ShapeType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="line"/>
|
||||
* <enumeration value="lineInv"/>
|
||||
* <enumeration value="triangle"/>
|
||||
* <enumeration value="rtTriangle"/>
|
||||
* <enumeration value="rect"/>
|
||||
* <enumeration value="diamond"/>
|
||||
* <enumeration value="parallelogram"/>
|
||||
* <enumeration value="trapezoid"/>
|
||||
* <enumeration value="nonIsoscelesTrapezoid"/>
|
||||
* <enumeration value="pentagon"/>
|
||||
* <enumeration value="hexagon"/>
|
||||
* <enumeration value="heptagon"/>
|
||||
* <enumeration value="octagon"/>
|
||||
* <enumeration value="decagon"/>
|
||||
* <enumeration value="dodecagon"/>
|
||||
* <enumeration value="star4"/>
|
||||
* <enumeration value="star5"/>
|
||||
* <enumeration value="star6"/>
|
||||
* <enumeration value="star7"/>
|
||||
* <enumeration value="star8"/>
|
||||
* <enumeration value="star10"/>
|
||||
* <enumeration value="star12"/>
|
||||
* <enumeration value="star16"/>
|
||||
* <enumeration value="star24"/>
|
||||
* <enumeration value="star32"/>
|
||||
* <enumeration value="roundRect"/>
|
||||
* <enumeration value="round1Rect"/>
|
||||
* <enumeration value="round2SameRect"/>
|
||||
* <enumeration value="round2DiagRect"/>
|
||||
* <enumeration value="snipRoundRect"/>
|
||||
* <enumeration value="snip1Rect"/>
|
||||
* <enumeration value="snip2SameRect"/>
|
||||
* <enumeration value="snip2DiagRect"/>
|
||||
* <enumeration value="plaque"/>
|
||||
* <enumeration value="ellipse"/>
|
||||
* <enumeration value="teardrop"/>
|
||||
* <enumeration value="homePlate"/>
|
||||
* <enumeration value="chevron"/>
|
||||
* <enumeration value="pieWedge"/>
|
||||
* <enumeration value="pie"/>
|
||||
* <enumeration value="blockArc"/>
|
||||
* <enumeration value="donut"/>
|
||||
* <enumeration value="noSmoking"/>
|
||||
* <enumeration value="rightArrow"/>
|
||||
* <enumeration value="leftArrow"/>
|
||||
* <enumeration value="upArrow"/>
|
||||
* <enumeration value="downArrow"/>
|
||||
* <enumeration value="stripedRightArrow"/>
|
||||
* <enumeration value="notchedRightArrow"/>
|
||||
* <enumeration value="bentUpArrow"/>
|
||||
* <enumeration value="leftRightArrow"/>
|
||||
* <enumeration value="upDownArrow"/>
|
||||
* <enumeration value="leftUpArrow"/>
|
||||
* <enumeration value="leftRightUpArrow"/>
|
||||
* <enumeration value="quadArrow"/>
|
||||
* <enumeration value="leftArrowCallout"/>
|
||||
* <enumeration value="rightArrowCallout"/>
|
||||
* <enumeration value="upArrowCallout"/>
|
||||
* <enumeration value="downArrowCallout"/>
|
||||
* <enumeration value="leftRightArrowCallout"/>
|
||||
* <enumeration value="upDownArrowCallout"/>
|
||||
* <enumeration value="quadArrowCallout"/>
|
||||
* <enumeration value="bentArrow"/>
|
||||
* <enumeration value="uturnArrow"/>
|
||||
* <enumeration value="circularArrow"/>
|
||||
* <enumeration value="leftCircularArrow"/>
|
||||
* <enumeration value="leftRightCircularArrow"/>
|
||||
* <enumeration value="curvedRightArrow"/>
|
||||
* <enumeration value="curvedLeftArrow"/>
|
||||
* <enumeration value="curvedUpArrow"/>
|
||||
* <enumeration value="curvedDownArrow"/>
|
||||
* <enumeration value="swooshArrow"/>
|
||||
* <enumeration value="cube"/>
|
||||
* <enumeration value="can"/>
|
||||
* <enumeration value="lightningBolt"/>
|
||||
* <enumeration value="heart"/>
|
||||
* <enumeration value="sun"/>
|
||||
* <enumeration value="moon"/>
|
||||
* <enumeration value="smileyFace"/>
|
||||
* <enumeration value="irregularSeal1"/>
|
||||
* <enumeration value="irregularSeal2"/>
|
||||
* <enumeration value="foldedCorner"/>
|
||||
* <enumeration value="bevel"/>
|
||||
* <enumeration value="frame"/>
|
||||
* <enumeration value="halfFrame"/>
|
||||
* <enumeration value="corner"/>
|
||||
* <enumeration value="diagStripe"/>
|
||||
* <enumeration value="chord"/>
|
||||
* <enumeration value="arc"/>
|
||||
* <enumeration value="leftBracket"/>
|
||||
* <enumeration value="rightBracket"/>
|
||||
* <enumeration value="leftBrace"/>
|
||||
* <enumeration value="rightBrace"/>
|
||||
* <enumeration value="bracketPair"/>
|
||||
* <enumeration value="bracePair"/>
|
||||
* <enumeration value="straightConnector1"/>
|
||||
* <enumeration value="bentConnector2"/>
|
||||
* <enumeration value="bentConnector3"/>
|
||||
* <enumeration value="bentConnector4"/>
|
||||
* <enumeration value="bentConnector5"/>
|
||||
* <enumeration value="curvedConnector2"/>
|
||||
* <enumeration value="curvedConnector3"/>
|
||||
* <enumeration value="curvedConnector4"/>
|
||||
* <enumeration value="curvedConnector5"/>
|
||||
* <enumeration value="callout1"/>
|
||||
* <enumeration value="callout2"/>
|
||||
* <enumeration value="callout3"/>
|
||||
* <enumeration value="accentCallout1"/>
|
||||
* <enumeration value="accentCallout2"/>
|
||||
* <enumeration value="accentCallout3"/>
|
||||
* <enumeration value="borderCallout1"/>
|
||||
* <enumeration value="borderCallout2"/>
|
||||
* <enumeration value="borderCallout3"/>
|
||||
* <enumeration value="accentBorderCallout1"/>
|
||||
* <enumeration value="accentBorderCallout2"/>
|
||||
* <enumeration value="accentBorderCallout3"/>
|
||||
* <enumeration value="wedgeRectCallout"/>
|
||||
* <enumeration value="wedgeRoundRectCallout"/>
|
||||
* <enumeration value="wedgeEllipseCallout"/>
|
||||
* <enumeration value="cloudCallout"/>
|
||||
* <enumeration value="cloud"/>
|
||||
* <enumeration value="ribbon"/>
|
||||
* <enumeration value="ribbon2"/>
|
||||
* <enumeration value="ellipseRibbon"/>
|
||||
* <enumeration value="ellipseRibbon2"/>
|
||||
* <enumeration value="leftRightRibbon"/>
|
||||
* <enumeration value="verticalScroll"/>
|
||||
* <enumeration value="horizontalScroll"/>
|
||||
* <enumeration value="wave"/>
|
||||
* <enumeration value="doubleWave"/>
|
||||
* <enumeration value="plus"/>
|
||||
* <enumeration value="flowChartProcess"/>
|
||||
* <enumeration value="flowChartDecision"/>
|
||||
* <enumeration value="flowChartInputOutput"/>
|
||||
* <enumeration value="flowChartPredefinedProcess"/>
|
||||
* <enumeration value="flowChartInternalStorage"/>
|
||||
* <enumeration value="flowChartDocument"/>
|
||||
* <enumeration value="flowChartMultidocument"/>
|
||||
* <enumeration value="flowChartTerminator"/>
|
||||
* <enumeration value="flowChartPreparation"/>
|
||||
* <enumeration value="flowChartManualInput"/>
|
||||
* <enumeration value="flowChartManualOperation"/>
|
||||
* <enumeration value="flowChartConnector"/>
|
||||
* <enumeration value="flowChartPunchedCard"/>
|
||||
* <enumeration value="flowChartPunchedTape"/>
|
||||
* <enumeration value="flowChartSummingJunction"/>
|
||||
* <enumeration value="flowChartOr"/>
|
||||
* <enumeration value="flowChartCollate"/>
|
||||
* <enumeration value="flowChartSort"/>
|
||||
* <enumeration value="flowChartExtract"/>
|
||||
* <enumeration value="flowChartMerge"/>
|
||||
* <enumeration value="flowChartOfflineStorage"/>
|
||||
* <enumeration value="flowChartOnlineStorage"/>
|
||||
* <enumeration value="flowChartMagneticTape"/>
|
||||
* <enumeration value="flowChartMagneticDisk"/>
|
||||
* <enumeration value="flowChartMagneticDrum"/>
|
||||
* <enumeration value="flowChartDisplay"/>
|
||||
* <enumeration value="flowChartDelay"/>
|
||||
* <enumeration value="flowChartAlternateProcess"/>
|
||||
* <enumeration value="flowChartOffpageConnector"/>
|
||||
* <enumeration value="actionButtonBlank"/>
|
||||
* <enumeration value="actionButtonHome"/>
|
||||
* <enumeration value="actionButtonHelp"/>
|
||||
* <enumeration value="actionButtonInformation"/>
|
||||
* <enumeration value="actionButtonForwardNext"/>
|
||||
* <enumeration value="actionButtonBackPrevious"/>
|
||||
* <enumeration value="actionButtonEnd"/>
|
||||
* <enumeration value="actionButtonBeginning"/>
|
||||
* <enumeration value="actionButtonReturn"/>
|
||||
* <enumeration value="actionButtonDocument"/>
|
||||
* <enumeration value="actionButtonSound"/>
|
||||
* <enumeration value="actionButtonMovie"/>
|
||||
* <enumeration value="gear6"/>
|
||||
* <enumeration value="gear9"/>
|
||||
* <enumeration value="funnel"/>
|
||||
* <enumeration value="mathPlus"/>
|
||||
* <enumeration value="mathMinus"/>
|
||||
* <enumeration value="mathMultiply"/>
|
||||
* <enumeration value="mathDivide"/>
|
||||
* <enumeration value="mathEqual"/>
|
||||
* <enumeration value="mathNotEqual"/>
|
||||
* <enumeration value="cornerTabs"/>
|
||||
* <enumeration value="squareTabs"/>
|
||||
* <enumeration value="plaqueTabs"/>
|
||||
* <enumeration value="chartX"/>
|
||||
* <enumeration value="chartStar"/>
|
||||
* <enumeration value="chartPlus"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ST_ShapeType", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "ST_ShapeType")
|
||||
@XmlEnum
|
||||
public enum STShapeType {
|
||||
|
||||
|
@ -28,55 +28,55 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ST_TextShapeType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="textNoShape"/>
|
||||
* <enumeration value="textPlain"/>
|
||||
* <enumeration value="textStop"/>
|
||||
* <enumeration value="textTriangle"/>
|
||||
* <enumeration value="textTriangleInverted"/>
|
||||
* <enumeration value="textChevron"/>
|
||||
* <enumeration value="textChevronInverted"/>
|
||||
* <enumeration value="textRingInside"/>
|
||||
* <enumeration value="textRingOutside"/>
|
||||
* <enumeration value="textArchUp"/>
|
||||
* <enumeration value="textArchDown"/>
|
||||
* <enumeration value="textCircle"/>
|
||||
* <enumeration value="textButton"/>
|
||||
* <enumeration value="textArchUpPour"/>
|
||||
* <enumeration value="textArchDownPour"/>
|
||||
* <enumeration value="textCirclePour"/>
|
||||
* <enumeration value="textButtonPour"/>
|
||||
* <enumeration value="textCurveUp"/>
|
||||
* <enumeration value="textCurveDown"/>
|
||||
* <enumeration value="textCanUp"/>
|
||||
* <enumeration value="textCanDown"/>
|
||||
* <enumeration value="textWave1"/>
|
||||
* <enumeration value="textWave2"/>
|
||||
* <enumeration value="textDoubleWave1"/>
|
||||
* <enumeration value="textWave4"/>
|
||||
* <enumeration value="textInflate"/>
|
||||
* <enumeration value="textDeflate"/>
|
||||
* <enumeration value="textInflateBottom"/>
|
||||
* <enumeration value="textDeflateBottom"/>
|
||||
* <enumeration value="textInflateTop"/>
|
||||
* <enumeration value="textDeflateTop"/>
|
||||
* <enumeration value="textDeflateInflate"/>
|
||||
* <enumeration value="textDeflateInflateDeflate"/>
|
||||
* <enumeration value="textFadeRight"/>
|
||||
* <enumeration value="textFadeLeft"/>
|
||||
* <enumeration value="textFadeUp"/>
|
||||
* <enumeration value="textFadeDown"/>
|
||||
* <enumeration value="textSlantUp"/>
|
||||
* <enumeration value="textSlantDown"/>
|
||||
* <enumeration value="textCascadeUp"/>
|
||||
* <enumeration value="textCascadeDown"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* <simpleType name="ST_TextShapeType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
|
||||
* <enumeration value="textNoShape"/>
|
||||
* <enumeration value="textPlain"/>
|
||||
* <enumeration value="textStop"/>
|
||||
* <enumeration value="textTriangle"/>
|
||||
* <enumeration value="textTriangleInverted"/>
|
||||
* <enumeration value="textChevron"/>
|
||||
* <enumeration value="textChevronInverted"/>
|
||||
* <enumeration value="textRingInside"/>
|
||||
* <enumeration value="textRingOutside"/>
|
||||
* <enumeration value="textArchUp"/>
|
||||
* <enumeration value="textArchDown"/>
|
||||
* <enumeration value="textCircle"/>
|
||||
* <enumeration value="textButton"/>
|
||||
* <enumeration value="textArchUpPour"/>
|
||||
* <enumeration value="textArchDownPour"/>
|
||||
* <enumeration value="textCirclePour"/>
|
||||
* <enumeration value="textButtonPour"/>
|
||||
* <enumeration value="textCurveUp"/>
|
||||
* <enumeration value="textCurveDown"/>
|
||||
* <enumeration value="textCanUp"/>
|
||||
* <enumeration value="textCanDown"/>
|
||||
* <enumeration value="textWave1"/>
|
||||
* <enumeration value="textWave2"/>
|
||||
* <enumeration value="textDoubleWave1"/>
|
||||
* <enumeration value="textWave4"/>
|
||||
* <enumeration value="textInflate"/>
|
||||
* <enumeration value="textDeflate"/>
|
||||
* <enumeration value="textInflateBottom"/>
|
||||
* <enumeration value="textDeflateBottom"/>
|
||||
* <enumeration value="textInflateTop"/>
|
||||
* <enumeration value="textDeflateTop"/>
|
||||
* <enumeration value="textDeflateInflate"/>
|
||||
* <enumeration value="textDeflateInflateDeflate"/>
|
||||
* <enumeration value="textFadeRight"/>
|
||||
* <enumeration value="textFadeLeft"/>
|
||||
* <enumeration value="textFadeUp"/>
|
||||
* <enumeration value="textFadeDown"/>
|
||||
* <enumeration value="textSlantUp"/>
|
||||
* <enumeration value="textSlantDown"/>
|
||||
* <enumeration value="textCascadeUp"/>
|
||||
* <enumeration value="textCascadeDown"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ST_TextShapeType", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")
|
||||
@XmlType(name = "ST_TextShapeType")
|
||||
@XmlEnum
|
||||
public enum STTextShapeType {
|
||||
|
||||
|
18
src/java/org/apache/poi/sl/draw/binding/package-info.java
Normal file
18
src/java/org/apache/poi/sl/draw/binding/package-info.java
Normal file
@ -0,0 +1,18 @@
|
||||
/* ====================================================================
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
==================================================================== */
|
||||
@javax.xml.bind.annotation.XmlSchema(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||
package org.apache.poi.sl.draw.binding;
|
Loading…
Reference in New Issue
Block a user