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

org.openxmlformats.schemas.officeDocument.x2006.math.impl.CTOMathArgPrImpl Maven / Gradle / Ivy

Go to download

XmlBeans generated from the Ecma supplied xsds: http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%20Part%204%20(DOCX).zip

The newest version!
/*
 * XML Type:  CT_OMathArgPr
 * Namespace: http://schemas.openxmlformats.org/officeDocument/2006/math
 * Java type: org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArgPr
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.officeDocument.x2006.math.impl;
/**
 * An XML CT_OMathArgPr(@http://schemas.openxmlformats.org/officeDocument/2006/math).
 *
 * This is a complex type.
 */
public class CTOMathArgPrImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.officeDocument.x2006.math.CTOMathArgPr
{
    private static final long serialVersionUID = 1L;
    
    public CTOMathArgPrImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName ARGSZ$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/officeDocument/2006/math", "argSz");
    
    
    /**
     * Gets the "argSz" element
     */
    public org.openxmlformats.schemas.officeDocument.x2006.math.CTInteger2 getArgSz()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.officeDocument.x2006.math.CTInteger2 target = null;
            target = (org.openxmlformats.schemas.officeDocument.x2006.math.CTInteger2)get_store().find_element_user(ARGSZ$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "argSz" element
     */
    public boolean isSetArgSz()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(ARGSZ$0) != 0;
        }
    }
    
    /**
     * Sets the "argSz" element
     */
    public void setArgSz(org.openxmlformats.schemas.officeDocument.x2006.math.CTInteger2 argSz)
    {
        generatedSetterHelperImpl(argSz, ARGSZ$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "argSz" element
     */
    public org.openxmlformats.schemas.officeDocument.x2006.math.CTInteger2 addNewArgSz()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.officeDocument.x2006.math.CTInteger2 target = null;
            target = (org.openxmlformats.schemas.officeDocument.x2006.math.CTInteger2)get_store().add_element_user(ARGSZ$0);
            return target;
        }
    }
    
    /**
     * Unsets the "argSz" element
     */
    public void unsetArgSz()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(ARGSZ$0, 0);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy