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