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

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

The newest version!
/*
 * An XML document type.
 * Localname: setFaultResponse
 * Namespace: http://www.example.org/WS-HT/api/xsd
 * Java type: org.example.wsHT.api.xsd.XMLSetFaultResponseDocument
 *
 * Automatically generated - do not modify.
 */
package org.example.wsHT.api.xsd.impl;
/**
 * A document containing one setFaultResponse(@http://www.example.org/WS-HT/api/xsd) element.
 *
 * This is a complex type.
 */
public class XMLSetFaultResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.api.xsd.XMLSetFaultResponseDocument
{
    private static final long serialVersionUID = 1L;
    
    public XMLSetFaultResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName SETFAULTRESPONSE$0 = 
        new javax.xml.namespace.QName("http://www.example.org/WS-HT/api/xsd", "setFaultResponse");
    
    
    /**
     * Gets the "setFaultResponse" element
     */
    public org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse getSetFaultResponse()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse target = null;
            target = (org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse)get_store().find_element_user(SETFAULTRESPONSE$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "setFaultResponse" element
     */
    public void setSetFaultResponse(org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse setFaultResponse)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse target = null;
            target = (org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse)get_store().find_element_user(SETFAULTRESPONSE$0, 0);
            if (target == null)
            {
                target = (org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse)get_store().add_element_user(SETFAULTRESPONSE$0);
            }
            target.set(setFaultResponse);
        }
    }
    
    /**
     * Appends and returns a new empty "setFaultResponse" element
     */
    public org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse addNewSetFaultResponse()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse target = null;
            target = (org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse)get_store().add_element_user(SETFAULTRESPONSE$0);
            return target;
        }
    }
    /**
     * An XML setFaultResponse(@http://www.example.org/WS-HT/api/xsd).
     *
     * This is a complex type.
     */
    public static class SetFaultResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.api.xsd.XMLSetFaultResponseDocument.SetFaultResponse
    {
        private static final long serialVersionUID = 1L;
        
        public SetFaultResponseImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy