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

org.w3.x2000.x09.xmldsig.impl.TransformTypeImpl Maven / Gradle / Ivy

/*
 * XML Type:  TransformType
 * Namespace: http://www.w3.org/2000/09/xmldsig#
 * Java type: org.w3.x2000.x09.xmldsig.TransformType
 *
 * Automatically generated - do not modify.
 */
package org.w3.x2000.x09.xmldsig.impl;
/**
 * An XML TransformType(@http://www.w3.org/2000/09/xmldsig#).
 *
 * This is a complex type.
 */
public class TransformTypeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.w3.x2000.x09.xmldsig.TransformType
{
    
    public TransformTypeImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName XPATH$0 = 
        new javax.xml.namespace.QName("http://www.w3.org/2000/09/xmldsig#", "XPath");
    private static final javax.xml.namespace.QName ALGORITHM$2 = 
        new javax.xml.namespace.QName("", "Algorithm");
    
    
    /**
     * Gets a List of "XPath" elements
     */
    public java.util.List getXPathList()
    {
        final class XPathList extends java.util.AbstractList
        {
            public java.lang.String get(int i)
                { return TransformTypeImpl.this.getXPathArray(i); }
            
            public java.lang.String set(int i, java.lang.String o)
            {
                java.lang.String old = TransformTypeImpl.this.getXPathArray(i);
                TransformTypeImpl.this.setXPathArray(i, o);
                return old;
            }
            
            public void add(int i, java.lang.String o)
                { TransformTypeImpl.this.insertXPath(i, o); }
            
            public java.lang.String remove(int i)
            {
                java.lang.String old = TransformTypeImpl.this.getXPathArray(i);
                TransformTypeImpl.this.removeXPath(i);
                return old;
            }
            
            public int size()
                { return TransformTypeImpl.this.sizeOfXPathArray(); }
            
        }
        
        synchronized (monitor())
        {
            check_orphaned();
            return new XPathList();
        }
    }
    
    /**
     * Gets array of all "XPath" elements
     */
    public java.lang.String[] getXPathArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            java.util.List targetList = new java.util.ArrayList();
            get_store().find_all_element_users(XPATH$0, targetList);
            java.lang.String[] result = new java.lang.String[targetList.size()];
            for (int i = 0, len = targetList.size() ; i < len ; i++)
                result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getStringValue();
            return result;
        }
    }
    
    /**
     * Gets ith "XPath" element
     */
    public java.lang.String getXPathArray(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(XPATH$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) a List of "XPath" elements
     */
    public java.util.List xgetXPathList()
    {
        final class XPathList extends java.util.AbstractList
        {
            public org.apache.xmlbeans.XmlString get(int i)
                { return TransformTypeImpl.this.xgetXPathArray(i); }
            
            public org.apache.xmlbeans.XmlString set(int i, org.apache.xmlbeans.XmlString o)
            {
                org.apache.xmlbeans.XmlString old = TransformTypeImpl.this.xgetXPathArray(i);
                TransformTypeImpl.this.xsetXPathArray(i, o);
                return old;
            }
            
            public void add(int i, org.apache.xmlbeans.XmlString o)
                { TransformTypeImpl.this.insertNewXPath(i).set(o); }
            
            public org.apache.xmlbeans.XmlString remove(int i)
            {
                org.apache.xmlbeans.XmlString old = TransformTypeImpl.this.xgetXPathArray(i);
                TransformTypeImpl.this.removeXPath(i);
                return old;
            }
            
            public int size()
                { return TransformTypeImpl.this.sizeOfXPathArray(); }
            
        }
        
        synchronized (monitor())
        {
            check_orphaned();
            return new XPathList();
        }
    }
    
    /**
     * Gets (as xml) array of all "XPath" elements
     */
    public org.apache.xmlbeans.XmlString[] xgetXPathArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            java.util.List targetList = new java.util.ArrayList();
            get_store().find_all_element_users(XPATH$0, targetList);
            org.apache.xmlbeans.XmlString[] result = new org.apache.xmlbeans.XmlString[targetList.size()];
            targetList.toArray(result);
            return result;
        }
    }
    
    /**
     * Gets (as xml) ith "XPath" element
     */
    public org.apache.xmlbeans.XmlString xgetXPathArray(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(XPATH$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            return (org.apache.xmlbeans.XmlString)target;
        }
    }
    
    /**
     * Returns number of "XPath" element
     */
    public int sizeOfXPathArray()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(XPATH$0);
        }
    }
    
    /**
     * Sets array of all "XPath" element
     */
    public void setXPathArray(java.lang.String[] xPathArray)
    {
        synchronized (monitor())
        {
            check_orphaned();
            arraySetterHelper(xPathArray, XPATH$0);
        }
    }
    
    /**
     * Sets ith "XPath" element
     */
    public void setXPathArray(int i, java.lang.String xPath)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(XPATH$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            target.setStringValue(xPath);
        }
    }
    
    /**
     * Sets (as xml) array of all "XPath" element
     */
    public void xsetXPathArray(org.apache.xmlbeans.XmlString[]xPathArray)
    {
        synchronized (monitor())
        {
            check_orphaned();
            arraySetterHelper(xPathArray, XPATH$0);
        }
    }
    
    /**
     * Sets (as xml) ith "XPath" element
     */
    public void xsetXPathArray(int i, org.apache.xmlbeans.XmlString xPath)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(XPATH$0, i);
            if (target == null)
            {
                throw new IndexOutOfBoundsException();
            }
            target.set(xPath);
        }
    }
    
    /**
     * Inserts the value as the ith "XPath" element
     */
    public void insertXPath(int i, java.lang.String xPath)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = 
                (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(XPATH$0, i);
            target.setStringValue(xPath);
        }
    }
    
    /**
     * Appends the value as the last "XPath" element
     */
    public void addXPath(java.lang.String xPath)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(XPATH$0);
            target.setStringValue(xPath);
        }
    }
    
    /**
     * Inserts and returns a new empty value (as xml) as the ith "XPath" element
     */
    public org.apache.xmlbeans.XmlString insertNewXPath(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().insert_element_user(XPATH$0, i);
            return target;
        }
    }
    
    /**
     * Appends and returns a new empty value (as xml) as the last "XPath" element
     */
    public org.apache.xmlbeans.XmlString addNewXPath()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(XPATH$0);
            return target;
        }
    }
    
    /**
     * Removes the ith "XPath" element
     */
    public void removeXPath(int i)
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(XPATH$0, i);
        }
    }
    
    /**
     * Gets the "Algorithm" attribute
     */
    public java.lang.String getAlgorithm()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ALGORITHM$2);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "Algorithm" attribute
     */
    public org.apache.xmlbeans.XmlAnyURI xgetAlgorithm()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlAnyURI target = null;
            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_attribute_user(ALGORITHM$2);
            return target;
        }
    }
    
    /**
     * Sets the "Algorithm" attribute
     */
    public void setAlgorithm(java.lang.String algorithm)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ALGORITHM$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ALGORITHM$2);
            }
            target.setStringValue(algorithm);
        }
    }
    
    /**
     * Sets (as xml) the "Algorithm" attribute
     */
    public void xsetAlgorithm(org.apache.xmlbeans.XmlAnyURI algorithm)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlAnyURI target = null;
            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_attribute_user(ALGORITHM$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_attribute_user(ALGORITHM$2);
            }
            target.set(algorithm);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy