gov.grants.apply.forms.sf424V10.impl.CFDANumberDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: CFDANumber
* Namespace: http://apply.grants.gov/forms/SF424-V1.0
* Java type: gov.grants.apply.forms.sf424V10.CFDANumberDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.forms.sf424V10.impl;
/**
* A document containing one CFDANumber(@http://apply.grants.gov/forms/SF424-V1.0) element.
*
* This is a complex type.
*/
public class CFDANumberDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424V10.CFDANumberDocument
{
private static final long serialVersionUID = 1L;
public CFDANumberDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName CFDANUMBER$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "CFDANumber");
/**
* Gets the "CFDANumber" element
*/
public java.lang.String getCFDANumber()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CFDANUMBER$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "CFDANumber" element
*/
public gov.grants.apply.system.globalV10.StringMin1Max15Type xgetCFDANumber()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max15Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max15Type)get_store().find_element_user(CFDANUMBER$0, 0);
return target;
}
}
/**
* Sets the "CFDANumber" element
*/
public void setCFDANumber(java.lang.String cfdaNumber)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CFDANUMBER$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CFDANUMBER$0);
}
target.setStringValue(cfdaNumber);
}
}
/**
* Sets (as xml) the "CFDANumber" element
*/
public void xsetCFDANumber(gov.grants.apply.system.globalV10.StringMin1Max15Type cfdaNumber)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max15Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max15Type)get_store().find_element_user(CFDANUMBER$0, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.StringMin1Max15Type)get_store().add_element_user(CFDANUMBER$0);
}
target.set(cfdaNumber);
}
}
}