/* * XML Type: CT_ShapeProperties * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.drawingml.x2006.main.impl; /** * An XML CT_ShapeProperties(@http://schemas.openxmlformats.org/drawingml/2006/main). * * This is a complex type. */ public class CTShapePropertiesImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties { public CTShapePropertiesImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName XFRM$0 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "xfrm"); private static final javax.xml.namespace.QName CUSTGEOM$2 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "custGeom"); private static final javax.xml.namespace.QName PRSTGEOM$4 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "prstGeom"); private static final javax.xml.namespace.QName NOFILL$6 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "noFill"); private static final javax.xml.namespace.QName SOLIDFILL$8 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "solidFill"); private static final javax.xml.namespace.QName GRADFILL$10 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gradFill"); private static final javax.xml.namespace.QName BLIPFILL$12 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blipFill"); private static final javax.xml.namespace.QName PATTFILL$14 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "pattFill"); private static final javax.xml.namespace.QName GRPFILL$16 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "grpFill"); private static final javax.xml.namespace.QName LN$18 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "ln"); private static final javax.xml.namespace.QName EFFECTLST$20 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "effectLst"); private static final javax.xml.namespace.QName EFFECTDAG$22 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "effectDag"); private static final javax.xml.namespace.QName SCENE3D$24 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "scene3d"); private static final javax.xml.namespace.QName SP3D$26 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "sp3d"); private static final javax.xml.namespace.QName EXTLST$28 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "extLst"); private static final javax.xml.namespace.QName BWMODE$30 = new javax.xml.namespace.QName("", "bwMode"); /** * Gets the "xfrm" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D getXfrm() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D)get_store().find_element_user(XFRM$0, 0); if (target == null) { return null; } return target; } } /** * True if has "xfrm" element */ public boolean isSetXfrm() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(XFRM$0) != 0; } } /** * Sets the "xfrm" element */ public void setXfrm(org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D xfrm) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D)get_store().find_element_user(XFRM$0, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D)get_store().add_element_user(XFRM$0); } target.set(xfrm); } } /** * Appends and returns a new empty "xfrm" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D addNewXfrm() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D)get_store().add_element_user(XFRM$0); return target; } } /** * Unsets the "xfrm" element */ public void unsetXfrm() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(XFRM$0, 0); } } /** * Gets the "custGeom" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D getCustGeom() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D)get_store().find_element_user(CUSTGEOM$2, 0); if (target == null) { return null; } return target; } } /** * True if has "custGeom" element */ public boolean isSetCustGeom() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(CUSTGEOM$2) != 0; } } /** * Sets the "custGeom" element */ public void setCustGeom(org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D custGeom) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D)get_store().find_element_user(CUSTGEOM$2, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D)get_store().add_element_user(CUSTGEOM$2); } target.set(custGeom); } } /** * Appends and returns a new empty "custGeom" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D addNewCustGeom() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTCustomGeometry2D)get_store().add_element_user(CUSTGEOM$2); return target; } } /** * Unsets the "custGeom" element */ public void unsetCustGeom() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(CUSTGEOM$2, 0); } } /** * Gets the "prstGeom" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D getPrstGeom() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D)get_store().find_element_user(PRSTGEOM$4, 0); if (target == null) { return null; } return target; } } /** * True if has "prstGeom" element */ public boolean isSetPrstGeom() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(PRSTGEOM$4) != 0; } } /** * Sets the "prstGeom" element */ public void setPrstGeom(org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D prstGeom) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D)get_store().find_element_user(PRSTGEOM$4, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D)get_store().add_element_user(PRSTGEOM$4); } target.set(prstGeom); } } /** * Appends and returns a new empty "prstGeom" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D addNewPrstGeom() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPresetGeometry2D)get_store().add_element_user(PRSTGEOM$4); return target; } } /** * Unsets the "prstGeom" element */ public void unsetPrstGeom() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(PRSTGEOM$4, 0); } } /** * Gets the "noFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties getNoFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties)get_store().find_element_user(NOFILL$6, 0); if (target == null) { return null; } return target; } } /** * True if has "noFill" element */ public boolean isSetNoFill() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(NOFILL$6) != 0; } } /** * Sets the "noFill" element */ public void setNoFill(org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties noFill) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties)get_store().find_element_user(NOFILL$6, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties)get_store().add_element_user(NOFILL$6); } target.set(noFill); } } /** * Appends and returns a new empty "noFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties addNewNoFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTNoFillProperties)get_store().add_element_user(NOFILL$6); return target; } } /** * Unsets the "noFill" element */ public void unsetNoFill() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(NOFILL$6, 0); } } /** * Gets the "solidFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties getSolidFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties)get_store().find_element_user(SOLIDFILL$8, 0); if (target == null) { return null; } return target; } } /** * True if has "solidFill" element */ public boolean isSetSolidFill() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(SOLIDFILL$8) != 0; } } /** * Sets the "solidFill" element */ public void setSolidFill(org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties solidFill) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties)get_store().find_element_user(SOLIDFILL$8, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties)get_store().add_element_user(SOLIDFILL$8); } target.set(solidFill); } } /** * Appends and returns a new empty "solidFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties addNewSolidFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTSolidColorFillProperties)get_store().add_element_user(SOLIDFILL$8); return target; } } /** * Unsets the "solidFill" element */ public void unsetSolidFill() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(SOLIDFILL$8, 0); } } /** * Gets the "gradFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties getGradFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties)get_store().find_element_user(GRADFILL$10, 0); if (target == null) { return null; } return target; } } /** * True if has "gradFill" element */ public boolean isSetGradFill() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(GRADFILL$10) != 0; } } /** * Sets the "gradFill" element */ public void setGradFill(org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties gradFill) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties)get_store().find_element_user(GRADFILL$10, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties)get_store().add_element_user(GRADFILL$10); } target.set(gradFill); } } /** * Appends and returns a new empty "gradFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties addNewGradFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGradientFillProperties)get_store().add_element_user(GRADFILL$10); return target; } } /** * Unsets the "gradFill" element */ public void unsetGradFill() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(GRADFILL$10, 0); } } /** * Gets the "blipFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties getBlipFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties)get_store().find_element_user(BLIPFILL$12, 0); if (target == null) { return null; } return target; } } /** * True if has "blipFill" element */ public boolean isSetBlipFill() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(BLIPFILL$12) != 0; } } /** * Sets the "blipFill" element */ public void setBlipFill(org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties blipFill) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties)get_store().find_element_user(BLIPFILL$12, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties)get_store().add_element_user(BLIPFILL$12); } target.set(blipFill); } } /** * Appends and returns a new empty "blipFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties addNewBlipFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTBlipFillProperties)get_store().add_element_user(BLIPFILL$12); return target; } } /** * Unsets the "blipFill" element */ public void unsetBlipFill() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(BLIPFILL$12, 0); } } /** * Gets the "pattFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties getPattFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties)get_store().find_element_user(PATTFILL$14, 0); if (target == null) { return null; } return target; } } /** * True if has "pattFill" element */ public boolean isSetPattFill() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(PATTFILL$14) != 0; } } /** * Sets the "pattFill" element */ public void setPattFill(org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties pattFill) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties)get_store().find_element_user(PATTFILL$14, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties)get_store().add_element_user(PATTFILL$14); } target.set(pattFill); } } /** * Appends and returns a new empty "pattFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties addNewPattFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTPatternFillProperties)get_store().add_element_user(PATTFILL$14); return target; } } /** * Unsets the "pattFill" element */ public void unsetPattFill() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(PATTFILL$14, 0); } } /** * Gets the "grpFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties getGrpFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties)get_store().find_element_user(GRPFILL$16, 0); if (target == null) { return null; } return target; } } /** * True if has "grpFill" element */ public boolean isSetGrpFill() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(GRPFILL$16) != 0; } } /** * Sets the "grpFill" element */ public void setGrpFill(org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties grpFill) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties)get_store().find_element_user(GRPFILL$16, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties)get_store().add_element_user(GRPFILL$16); } target.set(grpFill); } } /** * Appends and returns a new empty "grpFill" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties addNewGrpFill() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTGroupFillProperties)get_store().add_element_user(GRPFILL$16); return target; } } /** * Unsets the "grpFill" element */ public void unsetGrpFill() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(GRPFILL$16, 0); } } /** * Gets the "ln" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties getLn() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties)get_store().find_element_user(LN$18, 0); if (target == null) { return null; } return target; } } /** * True if has "ln" element */ public boolean isSetLn() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(LN$18) != 0; } } /** * Sets the "ln" element */ public void setLn(org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties ln) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties)get_store().find_element_user(LN$18, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties)get_store().add_element_user(LN$18); } target.set(ln); } } /** * Appends and returns a new empty "ln" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties addNewLn() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTLineProperties)get_store().add_element_user(LN$18); return target; } } /** * Unsets the "ln" element */ public void unsetLn() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(LN$18, 0); } } /** * Gets the "effectLst" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList getEffectLst() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList)get_store().find_element_user(EFFECTLST$20, 0); if (target == null) { return null; } return target; } } /** * True if has "effectLst" element */ public boolean isSetEffectLst() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(EFFECTLST$20) != 0; } } /** * Sets the "effectLst" element */ public void setEffectLst(org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList effectLst) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList)get_store().find_element_user(EFFECTLST$20, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList)get_store().add_element_user(EFFECTLST$20); } target.set(effectLst); } } /** * Appends and returns a new empty "effectLst" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList addNewEffectLst() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectList)get_store().add_element_user(EFFECTLST$20); return target; } } /** * Unsets the "effectLst" element */ public void unsetEffectLst() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(EFFECTLST$20, 0); } } /** * Gets the "effectDag" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer getEffectDag() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer)get_store().find_element_user(EFFECTDAG$22, 0); if (target == null) { return null; } return target; } } /** * True if has "effectDag" element */ public boolean isSetEffectDag() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(EFFECTDAG$22) != 0; } } /** * Sets the "effectDag" element */ public void setEffectDag(org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer effectDag) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer)get_store().find_element_user(EFFECTDAG$22, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer)get_store().add_element_user(EFFECTDAG$22); } target.set(effectDag); } } /** * Appends and returns a new empty "effectDag" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer addNewEffectDag() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTEffectContainer)get_store().add_element_user(EFFECTDAG$22); return target; } } /** * Unsets the "effectDag" element */ public void unsetEffectDag() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(EFFECTDAG$22, 0); } } /** * Gets the "scene3d" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D getScene3D() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D)get_store().find_element_user(SCENE3D$24, 0); if (target == null) { return null; } return target; } } /** * True if has "scene3d" element */ public boolean isSetScene3D() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(SCENE3D$24) != 0; } } /** * Sets the "scene3d" element */ public void setScene3D(org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D scene3D) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D)get_store().find_element_user(SCENE3D$24, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D)get_store().add_element_user(SCENE3D$24); } target.set(scene3D); } } /** * Appends and returns a new empty "scene3d" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D addNewScene3D() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTScene3D)get_store().add_element_user(SCENE3D$24); return target; } } /** * Unsets the "scene3d" element */ public void unsetScene3D() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(SCENE3D$24, 0); } } /** * Gets the "sp3d" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D getSp3D() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D)get_store().find_element_user(SP3D$26, 0); if (target == null) { return null; } return target; } } /** * True if has "sp3d" element */ public boolean isSetSp3D() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(SP3D$26) != 0; } } /** * Sets the "sp3d" element */ public void setSp3D(org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D sp3D) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D)get_store().find_element_user(SP3D$26, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D)get_store().add_element_user(SP3D$26); } target.set(sp3D); } } /** * Appends and returns a new empty "sp3d" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D addNewSp3D() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTShape3D)get_store().add_element_user(SP3D$26); return target; } } /** * Unsets the "sp3d" element */ public void unsetSp3D() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(SP3D$26, 0); } } /** * Gets the "extLst" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList getExtLst() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList)get_store().find_element_user(EXTLST$28, 0); if (target == null) { return null; } return target; } } /** * True if has "extLst" element */ public boolean isSetExtLst() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(EXTLST$28) != 0; } } /** * Sets the "extLst" element */ public void setExtLst(org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList extLst) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList)get_store().find_element_user(EXTLST$28, 0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList)get_store().add_element_user(EXTLST$28); } target.set(extLst); } } /** * Appends and returns a new empty "extLst" element */ public org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList addNewExtLst() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList)get_store().add_element_user(EXTLST$28); return target; } } /** * Unsets the "extLst" element */ public void unsetExtLst() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(EXTLST$28, 0); } } /** * Gets the "bwMode" attribute */ public org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode.Enum getBwMode() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BWMODE$30); if (target == null) { return null; } return (org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode.Enum)target.getEnumValue(); } } /** * Gets (as xml) the "bwMode" attribute */ public org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode xgetBwMode() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode)get_store().find_attribute_user(BWMODE$30); return target; } } /** * True if has "bwMode" attribute */ public boolean isSetBwMode() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(BWMODE$30) != null; } } /** * Sets the "bwMode" attribute */ public void setBwMode(org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode.Enum bwMode) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BWMODE$30); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(BWMODE$30); } target.setEnumValue(bwMode); } } /** * Sets (as xml) the "bwMode" attribute */ public void xsetBwMode(org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode bwMode) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode)get_store().find_attribute_user(BWMODE$30); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.STBlackWhiteMode)get_store().add_attribute_user(BWMODE$30); } target.set(bwMode); } } /** * Unsets the "bwMode" attribute */ public void unsetBwMode() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(BWMODE$30); } } }