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

gov.grants.apply.system.grantsCommonElementsV10.impl.FundingOpportunityTitleDocumentImpl Maven / Gradle / Ivy

/*
 * An XML document type.
 * Localname: FundingOpportunityTitle
 * Namespace: http://apply.grants.gov/system/GrantsCommonElements-V1.0
 * Java type: gov.grants.apply.system.grantsCommonElementsV10.FundingOpportunityTitleDocument
 *
 * Automatically generated - do not modify.
 */
package gov.grants.apply.system.grantsCommonElementsV10.impl;
/**
 * A document containing one FundingOpportunityTitle(@http://apply.grants.gov/system/GrantsCommonElements-V1.0) element.
 *
 * This is a complex type.
 */
public class FundingOpportunityTitleDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.system.grantsCommonElementsV10.FundingOpportunityTitleDocument
{
    private static final long serialVersionUID = 1L;
    
    public FundingOpportunityTitleDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName FUNDINGOPPORTUNITYTITLE$0 = 
        new javax.xml.namespace.QName("http://apply.grants.gov/system/GrantsCommonElements-V1.0", "FundingOpportunityTitle");
    
    
    /**
     * Gets the "FundingOpportunityTitle" element
     */
    public java.lang.String getFundingOpportunityTitle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FUNDINGOPPORTUNITYTITLE$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "FundingOpportunityTitle" element
     */
    public gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type xgetFundingOpportunityTitle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type target = null;
            target = (gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type)get_store().find_element_user(FUNDINGOPPORTUNITYTITLE$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "FundingOpportunityTitle" element
     */
    public void setFundingOpportunityTitle(java.lang.String fundingOpportunityTitle)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FUNDINGOPPORTUNITYTITLE$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FUNDINGOPPORTUNITYTITLE$0);
            }
            target.setStringValue(fundingOpportunityTitle);
        }
    }
    
    /**
     * Sets (as xml) the "FundingOpportunityTitle" element
     */
    public void xsetFundingOpportunityTitle(gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type fundingOpportunityTitle)
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type target = null;
            target = (gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type)get_store().find_element_user(FUNDINGOPPORTUNITYTITLE$0, 0);
            if (target == null)
            {
                target = (gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type)get_store().add_element_user(FUNDINGOPPORTUNITYTITLE$0);
            }
            target.set(fundingOpportunityTitle);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy