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

org.openehr.schemas.v1.impl.CodeDefinitionSetImpl Maven / Gradle / Ivy

/*
 * XML Type:  CodeDefinitionSet
 * Namespace: http://schemas.openehr.org/v1
 * Java type: org.openehr.schemas.v1.CodeDefinitionSet
 *
 * Automatically generated - do not modify.
 */
package org.openehr.schemas.v1.impl;
/**
 * An XML CodeDefinitionSet(@http://schemas.openehr.org/v1).
 *
 * This is a complex type.
 */
public class CodeDefinitionSetImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openehr.schemas.v1.CodeDefinitionSet
{
    private static final long serialVersionUID = 1L;
    
    public CodeDefinitionSetImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName ITEMS$0 = 
        new javax.xml.namespace.QName("http://schemas.openehr.org/v1", "items");
    private static final javax.xml.namespace.QName LANGUAGE$2 = 
        new javax.xml.namespace.QName("", "language");
    
    
    /**
     * Gets array of all "items" elements
     */
    public org.openehr.schemas.v1.ARCHETYPETERM[] getItemsArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            java.util.List targetList = new java.util.ArrayList();
            get_store().find_all_element_users(ITEMS$0, targetList);
            org.openehr.schemas.v1.ARCHETYPETERM[] result = new org.openehr.schemas.v1.ARCHETYPETERM[targetList.size()];
            targetList.toArray(result);
            return result;
        }
    }
    
    /**
     * Gets ith "items" element
     */
    public org.openehr.schemas.v1.ARCHETYPETERM getItemsArray(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openehr.schemas.v1.ARCHETYPETERM target = null;
            target = (org.openehr.schemas.v1.ARCHETYPETERM)get_store().find_element_user(ITEMS$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            return target;
        }
    }
    
    /**
     * Returns number of "items" element
     */
    public int sizeOfItemsArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(ITEMS$0);
        }
    }
    
    /**
     * Sets array of all "items" element
     */
    public void setItemsArray(org.openehr.schemas.v1.ARCHETYPETERM[] itemsArray)
    {
        synchronized (monitor())
        {
            check_orphaned();
            arraySetterHelper(itemsArray, ITEMS$0);
        }
    }
    
    /**
     * Sets ith "items" element
     */
    public void setItemsArray(int i, org.openehr.schemas.v1.ARCHETYPETERM items)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openehr.schemas.v1.ARCHETYPETERM target = null;
            target = (org.openehr.schemas.v1.ARCHETYPETERM)get_store().find_element_user(ITEMS$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            target.set(items);
        }
    }
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "items" element
     */
    public org.openehr.schemas.v1.ARCHETYPETERM insertNewItems(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openehr.schemas.v1.ARCHETYPETERM target = null;
            target = (org.openehr.schemas.v1.ARCHETYPETERM)get_store().insert_element_user(ITEMS$0, i);
            return target;
        }
    }
    
    /**
     * Appends and returns a new empty value (as xml) as the last "items" element
     */
    public org.openehr.schemas.v1.ARCHETYPETERM addNewItems()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openehr.schemas.v1.ARCHETYPETERM target = null;
            target = (org.openehr.schemas.v1.ARCHETYPETERM)get_store().add_element_user(ITEMS$0);
            return target;
        }
    }
    
    /**
     * Removes the ith "items" element
     */
    public void removeItems(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(ITEMS$0, i);
        }
    }
    
    /**
     * Gets the "language" attribute
     */
    public java.lang.String getLanguage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(LANGUAGE$2);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "language" attribute
     */
    public org.apache.xmlbeans.XmlString xgetLanguage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(LANGUAGE$2);
            return target;
        }
    }
    
    /**
     * Sets the "language" attribute
     */
    public void setLanguage(java.lang.String language)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(LANGUAGE$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(LANGUAGE$2);
            }
            target.setStringValue(language);
        }
    }
    
    /**
     * Sets (as xml) the "language" attribute
     */
    public void xsetLanguage(org.apache.xmlbeans.XmlString language)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(LANGUAGE$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(LANGUAGE$2);
            }
            target.set(language);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy