All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.grants.apply.forms.sf424V10.impl.StateEstimatedAmountDocumentImpl Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy