org.example.wsHT.api.xsd.impl.XMLGetAttachmentInfosDocumentImpl Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: getAttachmentInfos
* Namespace: http://www.example.org/WS-HT/api/xsd
* Java type: org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument
*
* Automatically generated - do not modify.
*/
package org.example.wsHT.api.xsd.impl;
/**
* A document containing one getAttachmentInfos(@http://www.example.org/WS-HT/api/xsd) element.
*
* This is a complex type.
*/
public class XMLGetAttachmentInfosDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument
{
private static final long serialVersionUID = 1L;
public XMLGetAttachmentInfosDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName GETATTACHMENTINFOS$0 =
new javax.xml.namespace.QName("http://www.example.org/WS-HT/api/xsd", "getAttachmentInfos");
/**
* Gets the "getAttachmentInfos" element
*/
public org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos getGetAttachmentInfos()
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos target = null;
target = (org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos)get_store().find_element_user(GETATTACHMENTINFOS$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "getAttachmentInfos" element
*/
public void setGetAttachmentInfos(org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos getAttachmentInfos)
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos target = null;
target = (org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos)get_store().find_element_user(GETATTACHMENTINFOS$0, 0);
if (target == null)
{
target = (org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos)get_store().add_element_user(GETATTACHMENTINFOS$0);
}
target.set(getAttachmentInfos);
}
}
/**
* Appends and returns a new empty "getAttachmentInfos" element
*/
public org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos addNewGetAttachmentInfos()
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos target = null;
target = (org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos)get_store().add_element_user(GETATTACHMENTINFOS$0);
return target;
}
}
/**
* An XML getAttachmentInfos(@http://www.example.org/WS-HT/api/xsd).
*
* This is a complex type.
*/
public static class GetAttachmentInfosImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.api.xsd.XMLGetAttachmentInfosDocument.GetAttachmentInfos
{
private static final long serialVersionUID = 1L;
public GetAttachmentInfosImpl(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);
}
}
}
}