gov.grants.apply.forms.rrsf424SF424BV11.impl.SubmittedDateDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: SubmittedDate
* Namespace: http://apply.grants.gov/forms/RRSF424_SF424B-V1.1
* Java type: gov.grants.apply.forms.rrsf424SF424BV11.SubmittedDateDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.forms.rrsf424SF424BV11.impl;
/**
* A document containing one SubmittedDate(@http://apply.grants.gov/forms/RRSF424_SF424B-V1.1) element.
*
* This is a complex type.
*/
public class SubmittedDateDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.rrsf424SF424BV11.SubmittedDateDocument
{
private static final long serialVersionUID = 1L;
public SubmittedDateDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName SUBMITTEDDATE$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/RRSF424_SF424B-V1.1", "SubmittedDate");
/**
* Gets the "SubmittedDate" element
*/
public java.util.Calendar getSubmittedDate()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SUBMITTEDDATE$0, 0);
if (target == null)
{
return null;
}
return target.getCalendarValue();
}
}
/**
* Gets (as xml) the "SubmittedDate" element
*/
public org.apache.xmlbeans.XmlDate xgetSubmittedDate()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlDate target = null;
target = (org.apache.xmlbeans.XmlDate)get_store().find_element_user(SUBMITTEDDATE$0, 0);
return target;
}
}
/**
* Sets the "SubmittedDate" element
*/
public void setSubmittedDate(java.util.Calendar submittedDate)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SUBMITTEDDATE$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SUBMITTEDDATE$0);
}
target.setCalendarValue(submittedDate);
}
}
/**
* Sets (as xml) the "SubmittedDate" element
*/
public void xsetSubmittedDate(org.apache.xmlbeans.XmlDate submittedDate)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlDate target = null;
target = (org.apache.xmlbeans.XmlDate)get_store().find_element_user(SUBMITTEDDATE$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlDate)get_store().add_element_user(SUBMITTEDDATE$0);
}
target.set(submittedDate);
}
}
}