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

org.example.wsHT.api.xsd.impl.XMLClaimDocumentImpl Maven / Gradle / Ivy

The newest version!
/*
 * An XML document type.
 * Localname: claim
 * Namespace: http://www.example.org/WS-HT/api/xsd
 * Java type: org.example.wsHT.api.xsd.XMLClaimDocument
 *
 * Automatically generated - do not modify.
 */
package org.example.wsHT.api.xsd.impl;
/**
 * A document containing one claim(@http://www.example.org/WS-HT/api/xsd) element.
 *
 * This is a complex type.
 */
public class XMLClaimDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.api.xsd.XMLClaimDocument
{
    private static final long serialVersionUID = 1L;
    
    public XMLClaimDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName CLAIM$0 = 
        new javax.xml.namespace.QName("http://www.example.org/WS-HT/api/xsd", "claim");
    
    
    /**
     * Gets the "claim" element
     */
    public org.example.wsHT.api.xsd.XMLClaimDocument.Claim getClaim()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.example.wsHT.api.xsd.XMLClaimDocument.Claim target = null;
            target = (org.example.wsHT.api.xsd.XMLClaimDocument.Claim)get_store().find_element_user(CLAIM$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "claim" element
     */
    public void setClaim(org.example.wsHT.api.xsd.XMLClaimDocument.Claim claim)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.example.wsHT.api.xsd.XMLClaimDocument.Claim target = null;
            target = (org.example.wsHT.api.xsd.XMLClaimDocument.Claim)get_store().find_element_user(CLAIM$0, 0);
            if (target == null)
            {
                target = (org.example.wsHT.api.xsd.XMLClaimDocument.Claim)get_store().add_element_user(CLAIM$0);
            }
            target.set(claim);
        }
    }
    
    /**
     * Appends and returns a new empty "claim" element
     */
    public org.example.wsHT.api.xsd.XMLClaimDocument.Claim addNewClaim()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.example.wsHT.api.xsd.XMLClaimDocument.Claim target = null;
            target = (org.example.wsHT.api.xsd.XMLClaimDocument.Claim)get_store().add_element_user(CLAIM$0);
            return target;
        }
    }
    /**
     * An XML claim(@http://www.example.org/WS-HT/api/xsd).
     *
     * This is a complex type.
     */
    public static class ClaimImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.api.xsd.XMLClaimDocument.Claim
    {
        private static final long serialVersionUID = 1L;
        
        public ClaimImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName IDENTIFIER$0 = 
            new javax.xml.namespace.QName("http://www.example.org/WS-HT/api/xsd", "identifier");
        
        
        /**
         * Gets the "identifier" element
         */
        public java.lang.String getIdentifier()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(IDENTIFIER$0, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "identifier" element
         */
        public org.apache.xmlbeans.XmlAnyURI xgetIdentifier()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnyURI target = null;
                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(IDENTIFIER$0, 0);
                return target;
            }
        }
        
        /**
         * Sets the "identifier" element
         */
        public void setIdentifier(java.lang.String identifier)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(IDENTIFIER$0, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(IDENTIFIER$0);
                }
                target.setStringValue(identifier);
            }
        }
        
        /**
         * Sets (as xml) the "identifier" element
         */
        public void xsetIdentifier(org.apache.xmlbeans.XmlAnyURI identifier)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnyURI target = null;
                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(IDENTIFIER$0, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(IDENTIFIER$0);
                }
                target.set(identifier);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy