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

org.openxmlformats.schemas.drawingml.x2006.main.impl.CTTextBodyImpl 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.3.0
Show newest version
/*
 * XML Type:  CT_TextBody
 * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main
 * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.drawingml.x2006.main.impl;
/**
 * An XML CT_TextBody(@http://schemas.openxmlformats.org/drawingml/2006/main).
 *
 * This is a complex type.
 */
public class CTTextBodyImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody {
    private static final long serialVersionUID = 1L;
    
    public CTTextBodyImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName BODYPR$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "bodyPr");
    private static final javax.xml.namespace.QName LSTSTYLE$2 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lstStyle");
    private static final javax.xml.namespace.QName P$4 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "p");
    
    
    /**
     * Gets the "bodyPr" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties getBodyPr() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties)get_store().find_element_user(BODYPR$0, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "bodyPr" element
     */
    public void setBodyPr(org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties bodyPr) {
        generatedSetterHelperImpl(bodyPr, BODYPR$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "bodyPr" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties addNewBodyPr() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties)get_store().add_element_user(BODYPR$0);
            return target;
        }
    }
    
    /**
     * Gets the "lstStyle" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle getLstStyle() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle)get_store().find_element_user(LSTSTYLE$2, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "lstStyle" element
     */
    public boolean isSetLstStyle() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(LSTSTYLE$2) != 0;
        }
    }
    
    /**
     * Sets the "lstStyle" element
     */
    public void setLstStyle(org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle lstStyle) {
        generatedSetterHelperImpl(lstStyle, LSTSTYLE$2, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "lstStyle" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle addNewLstStyle() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle)get_store().add_element_user(LSTSTYLE$2);
            return target;
        }
    }
    
    /**
     * Unsets the "lstStyle" element
     */
    public void unsetLstStyle() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(LSTSTYLE$2, 0);
        }
    }
    
    /**
     * Gets a List of "p" elements
     */
    public java.util.List getPList() {
        final class PList extends java.util.AbstractList {
            @Override
            public org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph get(int i)
                { return CTTextBodyImpl.this.getPArray(i); }
            
            @Override
            public org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph set(int i, org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph o) {
                org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph old = CTTextBodyImpl.this.getPArray(i);
                CTTextBodyImpl.this.setPArray(i, o);
                return old;
            }
            
            @Override
            public void add(int i, org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph o)
                { CTTextBodyImpl.this.insertNewP(i).set(o); }
            
            @Override
            public org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph remove(int i) {
                org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph old = CTTextBodyImpl.this.getPArray(i);
                CTTextBodyImpl.this.removeP(i);
                return old;
            }
            
            @Override
            public int size()
                { return CTTextBodyImpl.this.sizeOfPArray(); }
            
        }
        
        synchronized (monitor())
        {
            check_orphaned();
            return new PList();
        }
    }
    
    /**
     * Gets array of all "p" elements
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph[] getPArray() {
        return getXmlObjectArray(P$4, new org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph[0]);
    }
    
    /**
     * Gets ith "p" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph getPArray(int i) {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph)get_store().find_element_user(P$4, i);
            if (target == null) {
                throw new IndexOutOfBoundsException();
            }
            return target;
        }
    }
    
    /**
     * Returns number of "p" element
     */
    public int sizeOfPArray() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(P$4);
        }
    }
    
    /**
     * Sets array of all "p" element  WARNING: This method is not atomicaly synchronized.
     */
    public void setPArray(org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph[] pArray) {
        check_orphaned();
        arraySetterHelper(pArray, P$4);
    }
    
    /**
     * Sets ith "p" element
     */
    public void setPArray(int i, org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph p) {
        generatedSetterHelperImpl(p, P$4, i, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_ARRAYITEM);
    }
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "p" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph insertNewP(int i) {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph)get_store().insert_element_user(P$4, i);
            return target;
        }
    }
    
    /**
     * Appends and returns a new empty value (as xml) as the last "p" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph addNewP() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph)get_store().add_element_user(P$4);
            return target;
        }
    }
    
    /**
     * Removes the ith "p" element
     */
    public void removeP(int i) {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(P$4, i);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy