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