net.opengis.wns.x00.impl.UpdateMultiUserRegistrationDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: UpdateMultiUserRegistration
* Namespace: http://www.opengis.net/wns/0.0
* Java type: net.opengis.wns.x00.UpdateMultiUserRegistrationDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.wns.x00.impl;
/**
* A document containing one UpdateMultiUserRegistration(@http://www.opengis.net/wns/0.0) element.
*
* This is a complex type.
*/
public class UpdateMultiUserRegistrationDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.wns.x00.UpdateMultiUserRegistrationDocument
{
private static final long serialVersionUID = 1L;
public UpdateMultiUserRegistrationDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName UPDATEMULTIUSERREGISTRATION$0 =
new javax.xml.namespace.QName("http://www.opengis.net/wns/0.0", "UpdateMultiUserRegistration");
/**
* Gets the "UpdateMultiUserRegistration" element
*/
public net.opengis.wns.x00.UpdateMultiUserRegistrationType getUpdateMultiUserRegistration()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.wns.x00.UpdateMultiUserRegistrationType target = null;
target = (net.opengis.wns.x00.UpdateMultiUserRegistrationType)get_store().find_element_user(UPDATEMULTIUSERREGISTRATION$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "UpdateMultiUserRegistration" element
*/
public void setUpdateMultiUserRegistration(net.opengis.wns.x00.UpdateMultiUserRegistrationType updateMultiUserRegistration)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.wns.x00.UpdateMultiUserRegistrationType target = null;
target = (net.opengis.wns.x00.UpdateMultiUserRegistrationType)get_store().find_element_user(UPDATEMULTIUSERREGISTRATION$0, 0);
if (target == null)
{
target = (net.opengis.wns.x00.UpdateMultiUserRegistrationType)get_store().add_element_user(UPDATEMULTIUSERREGISTRATION$0);
}
target.set(updateMultiUserRegistration);
}
}
/**
* Appends and returns a new empty "UpdateMultiUserRegistration" element
*/
public net.opengis.wns.x00.UpdateMultiUserRegistrationType addNewUpdateMultiUserRegistration()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.wns.x00.UpdateMultiUserRegistrationType target = null;
target = (net.opengis.wns.x00.UpdateMultiUserRegistrationType)get_store().add_element_user(UPDATEMULTIUSERREGISTRATION$0);
return target;
}
}
}