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

org.apache.xmlbeans.impl.xb.xsdownload.impl.DownloadedSchemasDocumentImpl Maven / Gradle / Ivy

There is a newer version: 5.2.0_1
Show newest version
/*
 * An XML document type.
 * Localname: downloaded-schemas
 * Namespace: http://www.bea.com/2003/01/xmlbean/xsdownload
 * Java type: org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument
 *
 * Automatically generated - do not modify.
 */
package org.apache.xmlbeans.impl.xb.xsdownload.impl;
/**
 * A document containing one downloaded-schemas(@http://www.bea.com/2003/01/xmlbean/xsdownload) element.
 *
 * This is a complex type.
 */
public class DownloadedSchemasDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument
{
    private static final long serialVersionUID = 1L;
    
    public DownloadedSchemasDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName DOWNLOADEDSCHEMAS$0 = 
        new javax.xml.namespace.QName("http://www.bea.com/2003/01/xmlbean/xsdownload", "downloaded-schemas");
    
    
    /**
     * Gets the "downloaded-schemas" element
     */
    public org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas getDownloadedSchemas()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas target = null;
            target = (org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas)get_store().find_element_user(DOWNLOADEDSCHEMAS$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "downloaded-schemas" element
     */
    public void setDownloadedSchemas(org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas downloadedSchemas)
    {
        generatedSetterHelperImpl(downloadedSchemas, DOWNLOADEDSCHEMAS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "downloaded-schemas" element
     */
    public org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas addNewDownloadedSchemas()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas target = null;
            target = (org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas)get_store().add_element_user(DOWNLOADEDSCHEMAS$0);
            return target;
        }
    }
    /**
     * An XML downloaded-schemas(@http://www.bea.com/2003/01/xmlbean/xsdownload).
     *
     * This is a complex type.
     */
    public static class DownloadedSchemasImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemasDocument.DownloadedSchemas
    {
        private static final long serialVersionUID = 1L;
        
        public DownloadedSchemasImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName ENTRY$0 = 
            new javax.xml.namespace.QName("http://www.bea.com/2003/01/xmlbean/xsdownload", "entry");
        private static final javax.xml.namespace.QName DEFAULTDIRECTORY$2 = 
            new javax.xml.namespace.QName("", "defaultDirectory");
        
        
        /**
         * Gets array of all "entry" elements
         */
        public org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry[] getEntryArray()
        {
            synchronized (monitor())
            {
                check_orphaned();
                java.util.List targetList = new java.util.ArrayList();
                get_store().find_all_element_users(ENTRY$0, targetList);
                org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry[] result = new org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry[targetList.size()];
                targetList.toArray(result);
                return result;
            }
        }
        
        /**
         * Gets ith "entry" element
         */
        public org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry getEntryArray(int i)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry target = null;
                target = (org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry)get_store().find_element_user(ENTRY$0, i);
                if (target == null)
                {
                    throw new IndexOutOfBoundsException();
                }
                return target;
            }
        }
        
        /**
         * Returns number of "entry" element
         */
        public int sizeOfEntryArray()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(ENTRY$0);
            }
        }
        
        /**
         * Sets array of all "entry" element  WARNING: This method is not atomicaly synchronized.
         */
        public void setEntryArray(org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry[] entryArray)
        {
            check_orphaned();
            arraySetterHelper(entryArray, ENTRY$0);
        }
        
        /**
         * Sets ith "entry" element
         */
        public void setEntryArray(int i, org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry entry)
        {
            generatedSetterHelperImpl(entry, ENTRY$0, i, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_ARRAYITEM);
        }
        
        /**
         * Inserts and returns a new empty value (as xml) as the ith "entry" element
         */
        public org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry insertNewEntry(int i)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry target = null;
                target = (org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry)get_store().insert_element_user(ENTRY$0, i);
                return target;
            }
        }
        
        /**
         * Appends and returns a new empty value (as xml) as the last "entry" element
         */
        public org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry addNewEntry()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry target = null;
                target = (org.apache.xmlbeans.impl.xb.xsdownload.DownloadedSchemaEntry)get_store().add_element_user(ENTRY$0);
                return target;
            }
        }
        
        /**
         * Removes the ith "entry" element
         */
        public void removeEntry(int i)
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(ENTRY$0, i);
            }
        }
        
        /**
         * Gets the "defaultDirectory" attribute
         */
        public java.lang.String getDefaultDirectory()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DEFAULTDIRECTORY$2);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "defaultDirectory" attribute
         */
        public org.apache.xmlbeans.XmlToken xgetDefaultDirectory()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlToken target = null;
                target = (org.apache.xmlbeans.XmlToken)get_store().find_attribute_user(DEFAULTDIRECTORY$2);
                return target;
            }
        }
        
        /**
         * True if has "defaultDirectory" attribute
         */
        public boolean isSetDefaultDirectory()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(DEFAULTDIRECTORY$2) != null;
            }
        }
        
        /**
         * Sets the "defaultDirectory" attribute
         */
        public void setDefaultDirectory(java.lang.String defaultDirectory)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DEFAULTDIRECTORY$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(DEFAULTDIRECTORY$2);
                }
                target.setStringValue(defaultDirectory);
            }
        }
        
        /**
         * Sets (as xml) the "defaultDirectory" attribute
         */
        public void xsetDefaultDirectory(org.apache.xmlbeans.XmlToken defaultDirectory)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlToken target = null;
                target = (org.apache.xmlbeans.XmlToken)get_store().find_attribute_user(DEFAULTDIRECTORY$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlToken)get_store().add_attribute_user(DEFAULTDIRECTORY$2);
                }
                target.set(defaultDirectory);
            }
        }
        
        /**
         * Unsets the "defaultDirectory" attribute
         */
        public void unsetDefaultDirectory()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(DEFAULTDIRECTORY$2);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy