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

gov.grants.apply.forms.sf424BV11.impl.RepresentativeTitleDocumentImpl Maven / Gradle / Ivy

/*
 * An XML document type.
 * Localname: RepresentativeTitle
 * Namespace: http://apply.grants.gov/forms/SF424B-V1.1
 * Java type: gov.grants.apply.forms.sf424BV11.RepresentativeTitleDocument
 *
 * Automatically generated - do not modify.
 */
package gov.grants.apply.forms.sf424BV11.impl;
/**
 * A document containing one RepresentativeTitle(@http://apply.grants.gov/forms/SF424B-V1.1) element.
 *
 * This is a complex type.
 */
public class RepresentativeTitleDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424BV11.RepresentativeTitleDocument
{
    private static final long serialVersionUID = 1L;
    
    public RepresentativeTitleDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName REPRESENTATIVETITLE$0 = 
        new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424B-V1.1", "RepresentativeTitle");
    
    
    /**
     * Gets the "RepresentativeTitle" element
     */
    public java.lang.String getRepresentativeTitle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REPRESENTATIVETITLE$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "RepresentativeTitle" element
     */
    public gov.grants.apply.system.globalLibraryV20.HumanTitleDataType xgetRepresentativeTitle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.globalLibraryV20.HumanTitleDataType target = null;
            target = (gov.grants.apply.system.globalLibraryV20.HumanTitleDataType)get_store().find_element_user(REPRESENTATIVETITLE$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "RepresentativeTitle" element
     */
    public void setRepresentativeTitle(java.lang.String representativeTitle)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REPRESENTATIVETITLE$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(REPRESENTATIVETITLE$0);
            }
            target.setStringValue(representativeTitle);
        }
    }
    
    /**
     * Sets (as xml) the "RepresentativeTitle" element
     */
    public void xsetRepresentativeTitle(gov.grants.apply.system.globalLibraryV20.HumanTitleDataType representativeTitle)
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.system.globalLibraryV20.HumanTitleDataType target = null;
            target = (gov.grants.apply.system.globalLibraryV20.HumanTitleDataType)get_store().find_element_user(REPRESENTATIVETITLE$0, 0);
            if (target == null)
            {
                target = (gov.grants.apply.system.globalLibraryV20.HumanTitleDataType)get_store().add_element_user(REPRESENTATIVETITLE$0);
            }
            target.set(representativeTitle);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy