gov.grants.apply.forms.sf424V10.impl.OtherEstimatedAmountDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: OtherEstimatedAmount
* Namespace: http://apply.grants.gov/forms/SF424-V1.0
* Java type: gov.grants.apply.forms.sf424V10.OtherEstimatedAmountDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.forms.sf424V10.impl;
/**
* A document containing one OtherEstimatedAmount(@http://apply.grants.gov/forms/SF424-V1.0) element.
*
* This is a complex type.
*/
public class OtherEstimatedAmountDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424V10.OtherEstimatedAmountDocument
{
private static final long serialVersionUID = 1L;
public OtherEstimatedAmountDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName OTHERESTIMATEDAMOUNT$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "OtherEstimatedAmount");
/**
* Gets the "OtherEstimatedAmount" element
*/
public java.math.BigDecimal getOtherEstimatedAmount()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OTHERESTIMATEDAMOUNT$0, 0);
if (target == null)
{
return null;
}
return target.getBigDecimalValue();
}
}
/**
* Gets (as xml) the "OtherEstimatedAmount" element
*/
public gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type xgetOtherEstimatedAmount()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(OTHERESTIMATEDAMOUNT$0, 0);
return target;
}
}
/**
* Sets the "OtherEstimatedAmount" element
*/
public void setOtherEstimatedAmount(java.math.BigDecimal otherEstimatedAmount)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OTHERESTIMATEDAMOUNT$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(OTHERESTIMATEDAMOUNT$0);
}
target.setBigDecimalValue(otherEstimatedAmount);
}
}
/**
* Sets (as xml) the "OtherEstimatedAmount" element
*/
public void xsetOtherEstimatedAmount(gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type otherEstimatedAmount)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(OTHERESTIMATEDAMOUNT$0, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().add_element_user(OTHERESTIMATEDAMOUNT$0);
}
target.set(otherEstimatedAmount);
}
}
}