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

gov.grants.apply.system.footerV10.impl.SubmitterNameDocumentImpl Maven / Gradle / Ivy

/*
 * An XML document type.
 * Localname: SubmitterName
 * Namespace: http://apply.grants.gov/system/Footer-V1.0
 * Java type: gov.grants.apply.system.footerV10.SubmitterNameDocument
 *
 * Automatically generated - do not modify.
 */
package gov.grants.apply.system.footerV10.impl;
/**
 * A document containing one SubmitterName(@http://apply.grants.gov/system/Footer-V1.0) element.
 *
 * This is a complex type.
 */
public class SubmitterNameDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.system.footerV10.SubmitterNameDocument
{
    private static final long serialVersionUID = 1L;
    
    public SubmitterNameDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName SUBMITTERNAME$0 = 
        new javax.xml.namespace.QName("http://apply.grants.gov/system/Footer-V1.0", "SubmitterName");
    
    
    /**
     * Gets the "SubmitterName" element
     */
    public java.lang.String getSubmitterName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SUBMITTERNAME$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "SubmitterName" element
     */
    public gov.grants.apply.system.globalV10.StringMin1Max240Type xgetSubmitterName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.globalV10.StringMin1Max240Type target = null;
            target = (gov.grants.apply.system.globalV10.StringMin1Max240Type)get_store().find_element_user(SUBMITTERNAME$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "SubmitterName" element
     */
    public void setSubmitterName(java.lang.String submitterName)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SUBMITTERNAME$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SUBMITTERNAME$0);
            }
            target.setStringValue(submitterName);
        }
    }
    
    /**
     * Sets (as xml) the "SubmitterName" element
     */
    public void xsetSubmitterName(gov.grants.apply.system.globalV10.StringMin1Max240Type submitterName)
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.globalV10.StringMin1Max240Type target = null;
            target = (gov.grants.apply.system.globalV10.StringMin1Max240Type)get_store().find_element_user(SUBMITTERNAME$0, 0);
            if (target == null)
            {
                target = (gov.grants.apply.system.globalV10.StringMin1Max240Type)get_store().add_element_user(SUBMITTERNAME$0);
            }
            target.set(submitterName);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy