gov.grants.apply.forms.sf424BV11.impl.AssurancesDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: Assurances
* Namespace: http://apply.grants.gov/forms/SF424B-V1.1
* Java type: gov.grants.apply.forms.sf424BV11.AssurancesDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.forms.sf424BV11.impl;
/**
* A document containing one Assurances(@http://apply.grants.gov/forms/SF424B-V1.1) element.
*
* This is a complex type.
*/
public class AssurancesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424BV11.AssurancesDocument
{
private static final long serialVersionUID = 1L;
public AssurancesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName ASSURANCES$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424B-V1.1", "Assurances");
/**
* Gets the "Assurances" element
*/
public gov.grants.apply.forms.sf424BV11.AssuranceType getAssurances()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.forms.sf424BV11.AssuranceType target = null;
target = (gov.grants.apply.forms.sf424BV11.AssuranceType)get_store().find_element_user(ASSURANCES$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "Assurances" element
*/
public void setAssurances(gov.grants.apply.forms.sf424BV11.AssuranceType assurances)
{
generatedSetterHelperImpl(assurances, ASSURANCES$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "Assurances" element
*/
public gov.grants.apply.forms.sf424BV11.AssuranceType addNewAssurances()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.forms.sf424BV11.AssuranceType target = null;
target = (gov.grants.apply.forms.sf424BV11.AssuranceType)get_store().add_element_user(ASSURANCES$0);
return target;
}
}
}