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