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

org.openxmlformats.schemas.spreadsheetml.x2006.main.impl.CTCustomSheetViewsImpl 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

There is a newer version: 1.4
Show newest version
/*
 * XML Type:  CT_CustomSheetViews
 * Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
 * Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetViews
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.spreadsheetml.x2006.main.impl;
/**
 * An XML CT_CustomSheetViews(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
 *
 * This is a complex type.
 */
public class CTCustomSheetViewsImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetViews
{
    
    public CTCustomSheetViewsImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName CUSTOMSHEETVIEW$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/spreadsheetml/2006/main", "customSheetView");
    
    
    /**
     * Gets a List of "customSheetView" elements
     */
    public java.util.List getCustomSheetViewList()
    {
        final class CustomSheetViewList extends java.util.AbstractList
        {
            public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView get(int i)
                { return CTCustomSheetViewsImpl.this.getCustomSheetViewArray(i); }
            
            public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView set(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView o)
            {
                org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView old = CTCustomSheetViewsImpl.this.getCustomSheetViewArray(i);
                CTCustomSheetViewsImpl.this.setCustomSheetViewArray(i, o);
                return old;
            }
            
            public void add(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView o)
                { CTCustomSheetViewsImpl.this.insertNewCustomSheetView(i).set(o); }
            
            public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView remove(int i)
            {
                org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView old = CTCustomSheetViewsImpl.this.getCustomSheetViewArray(i);
                CTCustomSheetViewsImpl.this.removeCustomSheetView(i);
                return old;
            }
            
            public int size()
                { return CTCustomSheetViewsImpl.this.sizeOfCustomSheetViewArray(); }
            
        }
        
        synchronized (monitor())
        {
            check_orphaned();
            return new CustomSheetViewList();
        }
    }
    
    /**
     * Gets array of all "customSheetView" elements
     */
    public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView[] getCustomSheetViewArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            java.util.List targetList = new java.util.ArrayList();
            get_store().find_all_element_users(CUSTOMSHEETVIEW$0, targetList);
            org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView[] result = new org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView[targetList.size()];
            targetList.toArray(result);
            return result;
        }
    }
    
    /**
     * Gets ith "customSheetView" element
     */
    public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView getCustomSheetViewArray(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView target = null;
            target = (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView)get_store().find_element_user(CUSTOMSHEETVIEW$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            return target;
        }
    }
    
    /**
     * Returns number of "customSheetView" element
     */
    public int sizeOfCustomSheetViewArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(CUSTOMSHEETVIEW$0);
        }
    }
    
    /**
     * Sets array of all "customSheetView" element
     */
    public void setCustomSheetViewArray(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView[] customSheetViewArray)
    {
        synchronized (monitor())
        {
            check_orphaned();
            arraySetterHelper(customSheetViewArray, CUSTOMSHEETVIEW$0);
        }
    }
    
    /**
     * Sets ith "customSheetView" element
     */
    public void setCustomSheetViewArray(int i, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView customSheetView)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView target = null;
            target = (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView)get_store().find_element_user(CUSTOMSHEETVIEW$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            target.set(customSheetView);
        }
    }
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "customSheetView" element
     */
    public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView insertNewCustomSheetView(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView target = null;
            target = (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView)get_store().insert_element_user(CUSTOMSHEETVIEW$0, i);
            return target;
        }
    }
    
    /**
     * Appends and returns a new empty value (as xml) as the last "customSheetView" element
     */
    public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView addNewCustomSheetView()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView target = null;
            target = (org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCustomSheetView)get_store().add_element_user(CUSTOMSHEETVIEW$0);
            return target;
        }
    }
    
    /**
     * Removes the ith "customSheetView" element
     */
    public void removeCustomSheetView(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(CUSTOMSHEETVIEW$0, i);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy