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