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

com.microsoft.schemas.office.office.impl.CTRelationTableImpl Maven / Gradle / Ivy

/*
 * XML Type:  CT_RelationTable
 * Namespace: urn:schemas-microsoft-com:office:office
 * Java type: com.microsoft.schemas.office.office.CTRelationTable
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.office.impl;
/**
 * An XML CT_RelationTable(@urn:schemas-microsoft-com:office:office).
 *
 * This is a complex type.
 */
public class CTRelationTableImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.office.CTRelationTable
{
    private static final long serialVersionUID = 1L;
    
    public CTRelationTableImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName REL$0 = 
        new javax.xml.namespace.QName("urn:schemas-microsoft-com:office:office", "rel");
    private static final javax.xml.namespace.QName EXT$2 = 
        new javax.xml.namespace.QName("urn:schemas-microsoft-com:vml", "ext");
    
    
    /**
     * Gets a List of "rel" elements
     */
    public java.util.List getRelList()
    {
        final class RelList extends java.util.AbstractList
        {
            @Override
            public com.microsoft.schemas.office.office.CTRelation get(int i)
                { return CTRelationTableImpl.this.getRelArray(i); }
            
            @Override
            public com.microsoft.schemas.office.office.CTRelation set(int i, com.microsoft.schemas.office.office.CTRelation o)
            {
                com.microsoft.schemas.office.office.CTRelation old = CTRelationTableImpl.this.getRelArray(i);
                CTRelationTableImpl.this.setRelArray(i, o);
                return old;
            }
            
            @Override
            public void add(int i, com.microsoft.schemas.office.office.CTRelation o)
                { CTRelationTableImpl.this.insertNewRel(i).set(o); }
            
            @Override
            public com.microsoft.schemas.office.office.CTRelation remove(int i)
            {
                com.microsoft.schemas.office.office.CTRelation old = CTRelationTableImpl.this.getRelArray(i);
                CTRelationTableImpl.this.removeRel(i);
                return old;
            }
            
            @Override
            public int size()
                { return CTRelationTableImpl.this.sizeOfRelArray(); }
            
        }
        
        synchronized (monitor())
        {
            check_orphaned();
            return new RelList();
        }
    }
    
    /**
     * Gets array of all "rel" elements
     * @deprecated
     */
    @Deprecated
    public com.microsoft.schemas.office.office.CTRelation[] getRelArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            java.util.List targetList = new java.util.ArrayList();
            get_store().find_all_element_users(REL$0, targetList);
            com.microsoft.schemas.office.office.CTRelation[] result = new com.microsoft.schemas.office.office.CTRelation[targetList.size()];
            targetList.toArray(result);
            return result;
        }
    }
    
    /**
     * Gets ith "rel" element
     */
    public com.microsoft.schemas.office.office.CTRelation getRelArray(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.office.CTRelation target = null;
            target = (com.microsoft.schemas.office.office.CTRelation)get_store().find_element_user(REL$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            return target;
        }
    }
    
    /**
     * Returns number of "rel" element
     */
    public int sizeOfRelArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(REL$0);
        }
    }
    
    /**
     * Sets array of all "rel" element  WARNING: This method is not atomicaly synchronized.
     */
    public void setRelArray(com.microsoft.schemas.office.office.CTRelation[] relArray)
    {
        check_orphaned();
        arraySetterHelper(relArray, REL$0);
    }
    
    /**
     * Sets ith "rel" element
     */
    public void setRelArray(int i, com.microsoft.schemas.office.office.CTRelation rel)
    {
        generatedSetterHelperImpl(rel, REL$0, i, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_ARRAYITEM);
    }
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "rel" element
     */
    public com.microsoft.schemas.office.office.CTRelation insertNewRel(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.office.CTRelation target = null;
            target = (com.microsoft.schemas.office.office.CTRelation)get_store().insert_element_user(REL$0, i);
            return target;
        }
    }
    
    /**
     * Appends and returns a new empty value (as xml) as the last "rel" element
     */
    public com.microsoft.schemas.office.office.CTRelation addNewRel()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.office.CTRelation target = null;
            target = (com.microsoft.schemas.office.office.CTRelation)get_store().add_element_user(REL$0);
            return target;
        }
    }
    
    /**
     * Removes the ith "rel" element
     */
    public void removeRel(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(REL$0, i);
        }
    }
    
    /**
     * Gets the "ext" attribute
     */
    public com.microsoft.schemas.vml.STExt.Enum getExt()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXT$2);
            if (target == null)
            {
                return null;
            }
            return (com.microsoft.schemas.vml.STExt.Enum)target.getEnumValue();
        }
    }
    
    /**
     * Gets (as xml) the "ext" attribute
     */
    public com.microsoft.schemas.vml.STExt xgetExt()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.vml.STExt target = null;
            target = (com.microsoft.schemas.vml.STExt)get_store().find_attribute_user(EXT$2);
            return target;
        }
    }
    
    /**
     * True if has "ext" attribute
     */
    public boolean isSetExt()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(EXT$2) != null;
        }
    }
    
    /**
     * Sets the "ext" attribute
     */
    public void setExt(com.microsoft.schemas.vml.STExt.Enum ext)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXT$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(EXT$2);
            }
            target.setEnumValue(ext);
        }
    }
    
    /**
     * Sets (as xml) the "ext" attribute
     */
    public void xsetExt(com.microsoft.schemas.vml.STExt ext)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.vml.STExt target = null;
            target = (com.microsoft.schemas.vml.STExt)get_store().find_attribute_user(EXT$2);
            if (target == null)
            {
                target = (com.microsoft.schemas.vml.STExt)get_store().add_attribute_user(EXT$2);
            }
            target.set(ext);
        }
    }
    
    /**
     * Unsets the "ext" attribute
     */
    public void unsetExt()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(EXT$2);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy