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