All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxmlformats.schemas.drawingml.x2006.chart.impl.CTSerAxImpl Maven / Gradle / Ivy

Go to download

XmlBeans generated from the Ecma supplied xsds (since POI 5.0.0, the 5th edition is used): https://www.ecma-international.org/publications/standards/Ecma-376.htm

There is a newer version: 5.2.5
Show newest version
/*
 * XML Type:  CT_SerAx
 * Namespace: http://schemas.openxmlformats.org/drawingml/2006/chart
 * Java type: org.openxmlformats.schemas.drawingml.x2006.chart.CTSerAx
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.drawingml.x2006.chart.impl;
/**
 * An XML CT_SerAx(@http://schemas.openxmlformats.org/drawingml/2006/chart).
 *
 * This is a complex type.
 */
public class CTSerAxImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.chart.CTSerAx {
    private static final long serialVersionUID = 1L;
    
    public CTSerAxImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName AXID$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "axId");
    private static final javax.xml.namespace.QName SCALING$2 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "scaling");
    private static final javax.xml.namespace.QName DELETE$4 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "delete");
    private static final javax.xml.namespace.QName AXPOS$6 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "axPos");
    private static final javax.xml.namespace.QName MAJORGRIDLINES$8 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "majorGridlines");
    private static final javax.xml.namespace.QName MINORGRIDLINES$10 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "minorGridlines");
    private static final javax.xml.namespace.QName TITLE$12 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "title");
    private static final javax.xml.namespace.QName NUMFMT$14 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "numFmt");
    private static final javax.xml.namespace.QName MAJORTICKMARK$16 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "majorTickMark");
    private static final javax.xml.namespace.QName MINORTICKMARK$18 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "minorTickMark");
    private static final javax.xml.namespace.QName TICKLBLPOS$20 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "tickLblPos");
    private static final javax.xml.namespace.QName SPPR$22 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "spPr");
    private static final javax.xml.namespace.QName TXPR$24 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "txPr");
    private static final javax.xml.namespace.QName CROSSAX$26 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "crossAx");
    private static final javax.xml.namespace.QName CROSSES$28 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "crosses");
    private static final javax.xml.namespace.QName CROSSESAT$30 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "crossesAt");
    private static final javax.xml.namespace.QName TICKLBLSKIP$32 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "tickLblSkip");
    private static final javax.xml.namespace.QName TICKMARKSKIP$34 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "tickMarkSkip");
    private static final javax.xml.namespace.QName EXTLST$36 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/chart", "extLst");
    
    
    /**
     * Gets the "axId" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt getAxId() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt)get_store().find_element_user(AXID$0, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "axId" element
     */
    public void setAxId(org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt axId) {
        generatedSetterHelperImpl(axId, AXID$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "axId" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt addNewAxId() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt)get_store().add_element_user(AXID$0);
            return target;
        }
    }
    
    /**
     * Gets the "scaling" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling getScaling() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling)get_store().find_element_user(SCALING$2, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "scaling" element
     */
    public void setScaling(org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling scaling) {
        generatedSetterHelperImpl(scaling, SCALING$2, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "scaling" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling addNewScaling() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling)get_store().add_element_user(SCALING$2);
            return target;
        }
    }
    
    /**
     * Gets the "delete" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean getDelete() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean)get_store().find_element_user(DELETE$4, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "delete" element
     */
    public boolean isSetDelete() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(DELETE$4) != 0;
        }
    }
    
    /**
     * Sets the "delete" element
     */
    public void setDelete(org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean delete) {
        generatedSetterHelperImpl(delete, DELETE$4, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "delete" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean addNewDelete() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean)get_store().add_element_user(DELETE$4);
            return target;
        }
    }
    
    /**
     * Unsets the "delete" element
     */
    public void unsetDelete() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(DELETE$4, 0);
        }
    }
    
    /**
     * Gets the "axPos" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos getAxPos() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos)get_store().find_element_user(AXPOS$6, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "axPos" element
     */
    public void setAxPos(org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos axPos) {
        generatedSetterHelperImpl(axPos, AXPOS$6, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "axPos" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos addNewAxPos() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos)get_store().add_element_user(AXPOS$6);
            return target;
        }
    }
    
    /**
     * Gets the "majorGridlines" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines getMajorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines)get_store().find_element_user(MAJORGRIDLINES$8, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "majorGridlines" element
     */
    public boolean isSetMajorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(MAJORGRIDLINES$8) != 0;
        }
    }
    
    /**
     * Sets the "majorGridlines" element
     */
    public void setMajorGridlines(org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines majorGridlines) {
        generatedSetterHelperImpl(majorGridlines, MAJORGRIDLINES$8, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "majorGridlines" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines addNewMajorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines)get_store().add_element_user(MAJORGRIDLINES$8);
            return target;
        }
    }
    
    /**
     * Unsets the "majorGridlines" element
     */
    public void unsetMajorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(MAJORGRIDLINES$8, 0);
        }
    }
    
    /**
     * Gets the "minorGridlines" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines getMinorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines)get_store().find_element_user(MINORGRIDLINES$10, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "minorGridlines" element
     */
    public boolean isSetMinorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(MINORGRIDLINES$10) != 0;
        }
    }
    
    /**
     * Sets the "minorGridlines" element
     */
    public void setMinorGridlines(org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines minorGridlines) {
        generatedSetterHelperImpl(minorGridlines, MINORGRIDLINES$10, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "minorGridlines" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines addNewMinorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines)get_store().add_element_user(MINORGRIDLINES$10);
            return target;
        }
    }
    
    /**
     * Unsets the "minorGridlines" element
     */
    public void unsetMinorGridlines() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(MINORGRIDLINES$10, 0);
        }
    }
    
    /**
     * Gets the "title" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTitle getTitle() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTitle target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTitle)get_store().find_element_user(TITLE$12, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "title" element
     */
    public boolean isSetTitle() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(TITLE$12) != 0;
        }
    }
    
    /**
     * Sets the "title" element
     */
    public void setTitle(org.openxmlformats.schemas.drawingml.x2006.chart.CTTitle title) {
        generatedSetterHelperImpl(title, TITLE$12, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "title" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTitle addNewTitle() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTitle target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTitle)get_store().add_element_user(TITLE$12);
            return target;
        }
    }
    
    /**
     * Unsets the "title" element
     */
    public void unsetTitle() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(TITLE$12, 0);
        }
    }
    
    /**
     * Gets the "numFmt" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt getNumFmt() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt)get_store().find_element_user(NUMFMT$14, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "numFmt" element
     */
    public boolean isSetNumFmt() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(NUMFMT$14) != 0;
        }
    }
    
    /**
     * Sets the "numFmt" element
     */
    public void setNumFmt(org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt numFmt) {
        generatedSetterHelperImpl(numFmt, NUMFMT$14, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "numFmt" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt addNewNumFmt() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt)get_store().add_element_user(NUMFMT$14);
            return target;
        }
    }
    
    /**
     * Unsets the "numFmt" element
     */
    public void unsetNumFmt() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(NUMFMT$14, 0);
        }
    }
    
    /**
     * Gets the "majorTickMark" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark getMajorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark)get_store().find_element_user(MAJORTICKMARK$16, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "majorTickMark" element
     */
    public boolean isSetMajorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(MAJORTICKMARK$16) != 0;
        }
    }
    
    /**
     * Sets the "majorTickMark" element
     */
    public void setMajorTickMark(org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark majorTickMark) {
        generatedSetterHelperImpl(majorTickMark, MAJORTICKMARK$16, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "majorTickMark" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark addNewMajorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark)get_store().add_element_user(MAJORTICKMARK$16);
            return target;
        }
    }
    
    /**
     * Unsets the "majorTickMark" element
     */
    public void unsetMajorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(MAJORTICKMARK$16, 0);
        }
    }
    
    /**
     * Gets the "minorTickMark" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark getMinorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark)get_store().find_element_user(MINORTICKMARK$18, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "minorTickMark" element
     */
    public boolean isSetMinorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(MINORTICKMARK$18) != 0;
        }
    }
    
    /**
     * Sets the "minorTickMark" element
     */
    public void setMinorTickMark(org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark minorTickMark) {
        generatedSetterHelperImpl(minorTickMark, MINORTICKMARK$18, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "minorTickMark" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark addNewMinorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark)get_store().add_element_user(MINORTICKMARK$18);
            return target;
        }
    }
    
    /**
     * Unsets the "minorTickMark" element
     */
    public void unsetMinorTickMark() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(MINORTICKMARK$18, 0);
        }
    }
    
    /**
     * Gets the "tickLblPos" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos getTickLblPos() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos)get_store().find_element_user(TICKLBLPOS$20, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "tickLblPos" element
     */
    public boolean isSetTickLblPos() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(TICKLBLPOS$20) != 0;
        }
    }
    
    /**
     * Sets the "tickLblPos" element
     */
    public void setTickLblPos(org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos tickLblPos) {
        generatedSetterHelperImpl(tickLblPos, TICKLBLPOS$20, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "tickLblPos" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos addNewTickLblPos() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos)get_store().add_element_user(TICKLBLPOS$20);
            return target;
        }
    }
    
    /**
     * Unsets the "tickLblPos" element
     */
    public void unsetTickLblPos() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(TICKLBLPOS$20, 0);
        }
    }
    
    /**
     * Gets the "spPr" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties getSpPr() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties)get_store().find_element_user(SPPR$22, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "spPr" element
     */
    public boolean isSetSpPr() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(SPPR$22) != 0;
        }
    }
    
    /**
     * Sets the "spPr" element
     */
    public void setSpPr(org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties spPr) {
        generatedSetterHelperImpl(spPr, SPPR$22, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "spPr" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties addNewSpPr() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties)get_store().add_element_user(SPPR$22);
            return target;
        }
    }
    
    /**
     * Unsets the "spPr" element
     */
    public void unsetSpPr() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(SPPR$22, 0);
        }
    }
    
    /**
     * Gets the "txPr" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody getTxPr() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody)get_store().find_element_user(TXPR$24, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "txPr" element
     */
    public boolean isSetTxPr() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(TXPR$24) != 0;
        }
    }
    
    /**
     * Sets the "txPr" element
     */
    public void setTxPr(org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody txPr) {
        generatedSetterHelperImpl(txPr, TXPR$24, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "txPr" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody addNewTxPr() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody)get_store().add_element_user(TXPR$24);
            return target;
        }
    }
    
    /**
     * Unsets the "txPr" element
     */
    public void unsetTxPr() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(TXPR$24, 0);
        }
    }
    
    /**
     * Gets the "crossAx" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt getCrossAx() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt)get_store().find_element_user(CROSSAX$26, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "crossAx" element
     */
    public void setCrossAx(org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt crossAx) {
        generatedSetterHelperImpl(crossAx, CROSSAX$26, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "crossAx" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt addNewCrossAx() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt)get_store().add_element_user(CROSSAX$26);
            return target;
        }
    }
    
    /**
     * Gets the "crosses" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses getCrosses() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses)get_store().find_element_user(CROSSES$28, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "crosses" element
     */
    public boolean isSetCrosses() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(CROSSES$28) != 0;
        }
    }
    
    /**
     * Sets the "crosses" element
     */
    public void setCrosses(org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses crosses) {
        generatedSetterHelperImpl(crosses, CROSSES$28, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "crosses" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses addNewCrosses() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses)get_store().add_element_user(CROSSES$28);
            return target;
        }
    }
    
    /**
     * Unsets the "crosses" element
     */
    public void unsetCrosses() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(CROSSES$28, 0);
        }
    }
    
    /**
     * Gets the "crossesAt" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTDouble getCrossesAt() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTDouble target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTDouble)get_store().find_element_user(CROSSESAT$30, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "crossesAt" element
     */
    public boolean isSetCrossesAt() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(CROSSESAT$30) != 0;
        }
    }
    
    /**
     * Sets the "crossesAt" element
     */
    public void setCrossesAt(org.openxmlformats.schemas.drawingml.x2006.chart.CTDouble crossesAt) {
        generatedSetterHelperImpl(crossesAt, CROSSESAT$30, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "crossesAt" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTDouble addNewCrossesAt() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTDouble target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTDouble)get_store().add_element_user(CROSSESAT$30);
            return target;
        }
    }
    
    /**
     * Unsets the "crossesAt" element
     */
    public void unsetCrossesAt() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(CROSSESAT$30, 0);
        }
    }
    
    /**
     * Gets the "tickLblSkip" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip getTickLblSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip)get_store().find_element_user(TICKLBLSKIP$32, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "tickLblSkip" element
     */
    public boolean isSetTickLblSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(TICKLBLSKIP$32) != 0;
        }
    }
    
    /**
     * Sets the "tickLblSkip" element
     */
    public void setTickLblSkip(org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip tickLblSkip) {
        generatedSetterHelperImpl(tickLblSkip, TICKLBLSKIP$32, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "tickLblSkip" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip addNewTickLblSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip)get_store().add_element_user(TICKLBLSKIP$32);
            return target;
        }
    }
    
    /**
     * Unsets the "tickLblSkip" element
     */
    public void unsetTickLblSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(TICKLBLSKIP$32, 0);
        }
    }
    
    /**
     * Gets the "tickMarkSkip" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip getTickMarkSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip)get_store().find_element_user(TICKMARKSKIP$34, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "tickMarkSkip" element
     */
    public boolean isSetTickMarkSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(TICKMARKSKIP$34) != 0;
        }
    }
    
    /**
     * Sets the "tickMarkSkip" element
     */
    public void setTickMarkSkip(org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip tickMarkSkip) {
        generatedSetterHelperImpl(tickMarkSkip, TICKMARKSKIP$34, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "tickMarkSkip" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip addNewTickMarkSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTSkip)get_store().add_element_user(TICKMARKSKIP$34);
            return target;
        }
    }
    
    /**
     * Unsets the "tickMarkSkip" element
     */
    public void unsetTickMarkSkip() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(TICKMARKSKIP$34, 0);
        }
    }
    
    /**
     * Gets the "extLst" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTExtensionList getExtLst() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTExtensionList target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTExtensionList)get_store().find_element_user(EXTLST$36, 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$36) != 0;
        }
    }
    
    /**
     * Sets the "extLst" element
     */
    public void setExtLst(org.openxmlformats.schemas.drawingml.x2006.chart.CTExtensionList extLst) {
        generatedSetterHelperImpl(extLst, EXTLST$36, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "extLst" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.chart.CTExtensionList addNewExtLst() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.chart.CTExtensionList target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.chart.CTExtensionList)get_store().add_element_user(EXTLST$36);
            return target;
        }
    }
    
    /**
     * Unsets the "extLst" element
     */
    public void unsetExtLst() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(EXTLST$36, 0);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy