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

gov.grants.apply.forms.sf424AV10.impl.OtherIndirectChargesExplanationDocumentImpl Maven / Gradle / Ivy

/*
 * An XML document type.
 * Localname: OtherIndirectChargesExplanation
 * Namespace: http://apply.grants.gov/forms/SF424A-V1.0
 * Java type: gov.grants.apply.forms.sf424AV10.OtherIndirectChargesExplanationDocument
 *
 * Automatically generated - do not modify.
 */
package gov.grants.apply.forms.sf424AV10.impl;
/**
 * A document containing one OtherIndirectChargesExplanation(@http://apply.grants.gov/forms/SF424A-V1.0) element.
 *
 * This is a complex type.
 */
public class OtherIndirectChargesExplanationDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424AV10.OtherIndirectChargesExplanationDocument
{
    private static final long serialVersionUID = 1L;
    
    public OtherIndirectChargesExplanationDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName OTHERINDIRECTCHARGESEXPLANATION$0 = 
        new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "OtherIndirectChargesExplanation");
    
    
    /**
     * Gets the "OtherIndirectChargesExplanation" element
     */
    public java.lang.String getOtherIndirectChargesExplanation()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OTHERINDIRECTCHARGESEXPLANATION$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "OtherIndirectChargesExplanation" element
     */
    public gov.grants.apply.system.globalV10.StringMin1Max50Type xgetOtherIndirectChargesExplanation()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.globalV10.StringMin1Max50Type target = null;
            target = (gov.grants.apply.system.globalV10.StringMin1Max50Type)get_store().find_element_user(OTHERINDIRECTCHARGESEXPLANATION$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "OtherIndirectChargesExplanation" element
     */
    public void setOtherIndirectChargesExplanation(java.lang.String otherIndirectChargesExplanation)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OTHERINDIRECTCHARGESEXPLANATION$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(OTHERINDIRECTCHARGESEXPLANATION$0);
            }
            target.setStringValue(otherIndirectChargesExplanation);
        }
    }
    
    /**
     * Sets (as xml) the "OtherIndirectChargesExplanation" element
     */
    public void xsetOtherIndirectChargesExplanation(gov.grants.apply.system.globalV10.StringMin1Max50Type otherIndirectChargesExplanation)
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.globalV10.StringMin1Max50Type target = null;
            target = (gov.grants.apply.system.globalV10.StringMin1Max50Type)get_store().find_element_user(OTHERINDIRECTCHARGESEXPLANATION$0, 0);
            if (target == null)
            {
                target = (gov.grants.apply.system.globalV10.StringMin1Max50Type)get_store().add_element_user(OTHERINDIRECTCHARGESEXPLANATION$0);
            }
            target.set(otherIndirectChargesExplanation);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy