org.xmlsoap.schemas.soap.encoding.impl.GMonthDayDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: gMonthDay
* Namespace: http://schemas.xmlsoap.org/soap/encoding/
* Java type: org.xmlsoap.schemas.soap.encoding.GMonthDayDocument
*
* Automatically generated - do not modify.
*/
package org.xmlsoap.schemas.soap.encoding.impl;
/**
* A document containing one gMonthDay(@http://schemas.xmlsoap.org/soap/encoding/) element.
*
* This is a complex type.
*/
public class GMonthDayDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.xmlsoap.schemas.soap.encoding.GMonthDayDocument
{
public GMonthDayDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName GMONTHDAY$0 =
new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/encoding/", "gMonthDay");
/**
* Gets the "gMonthDay" element
*/
public org.xmlsoap.schemas.soap.encoding.GMonthDay getGMonthDay()
{
synchronized (monitor())
{
check_orphaned();
org.xmlsoap.schemas.soap.encoding.GMonthDay target = null;
target = (org.xmlsoap.schemas.soap.encoding.GMonthDay)get_store().find_element_user(GMONTHDAY$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "gMonthDay" element
*/
public void setGMonthDay(org.xmlsoap.schemas.soap.encoding.GMonthDay gMonthDay)
{
synchronized (monitor())
{
check_orphaned();
org.xmlsoap.schemas.soap.encoding.GMonthDay target = null;
target = (org.xmlsoap.schemas.soap.encoding.GMonthDay)get_store().find_element_user(GMONTHDAY$0, 0);
if (target == null)
{
target = (org.xmlsoap.schemas.soap.encoding.GMonthDay)get_store().add_element_user(GMONTHDAY$0);
}
target.set(gMonthDay);
}
}
/**
* Appends and returns a new empty "gMonthDay" element
*/
public org.xmlsoap.schemas.soap.encoding.GMonthDay addNewGMonthDay()
{
synchronized (monitor())
{
check_orphaned();
org.xmlsoap.schemas.soap.encoding.GMonthDay target = null;
target = (org.xmlsoap.schemas.soap.encoding.GMonthDay)get_store().add_element_user(GMONTHDAY$0);
return target;
}
}
}