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

gov.grants.apply.forms.ed800013V11.impl.CombinedAssurancesDocumentImpl Maven / Gradle / Ivy

/*
 * An XML document type.
 * Localname: CombinedAssurances
 * Namespace: http://apply.grants.gov/forms/ED_80_0013-V1.1
 * Java type: gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument
 *
 * Automatically generated - do not modify.
 */
package gov.grants.apply.forms.ed800013V11.impl;
/**
 * A document containing one CombinedAssurances(@http://apply.grants.gov/forms/ED_80_0013-V1.1) element.
 *
 * This is a complex type.
 */
public class CombinedAssurancesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument
{
    private static final long serialVersionUID = 1L;
    
    public CombinedAssurancesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName COMBINEDASSURANCES$0 = 
        new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "CombinedAssurances");
    
    
    /**
     * Gets the "CombinedAssurances" element
     */
    public gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances getCombinedAssurances()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances target = null;
            target = (gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances)get_store().find_element_user(COMBINEDASSURANCES$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "CombinedAssurances" element
     */
    public void setCombinedAssurances(gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances combinedAssurances)
    {
        generatedSetterHelperImpl(combinedAssurances, COMBINEDASSURANCES$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "CombinedAssurances" element
     */
    public gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances addNewCombinedAssurances()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances target = null;
            target = (gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances)get_store().add_element_user(COMBINEDASSURANCES$0);
            return target;
        }
    }
    /**
     * An XML CombinedAssurances(@http://apply.grants.gov/forms/ED_80_0013-V1.1).
     *
     * This is a complex type.
     */
    public static class CombinedAssurancesImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.ed800013V11.CombinedAssurancesDocument.CombinedAssurances
    {
        private static final long serialVersionUID = 1L;
        
        public CombinedAssurancesImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName EXPLANATIONATTACHMENT$0 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "ExplanationAttachment");
        private static final javax.xml.namespace.QName PERFORMANCELOCATION$2 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "PerformanceLocation");
        private static final javax.xml.namespace.QName ADDITIONALLOCATION$4 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "AdditionalLocation");
        private static final javax.xml.namespace.QName ORGANIZATIONNAME$6 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "OrganizationName");
        private static final javax.xml.namespace.QName AUTHORIZEDREPRESENTATIVENAME$8 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "AuthorizedRepresentativeName");
        private static final javax.xml.namespace.QName AUTHORIZEDREPRESENTATIVETITLE$10 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "AuthorizedRepresentativeTitle");
        private static final javax.xml.namespace.QName AUTHORIZEDREPRESENTATIVESIGNATURE$12 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "AuthorizedRepresentativeSignature");
        private static final javax.xml.namespace.QName SIGNEDDATE$14 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "SignedDate");
        private static final javax.xml.namespace.QName FORMVERSION$16 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/ED_80_0013-V1.1", "FormVersion");
        
        
        /**
         * Gets the "ExplanationAttachment" element
         */
        public gov.grants.apply.system.attachmentsV10.AttachedFileDataType getExplanationAttachment()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.attachmentsV10.AttachedFileDataType target = null;
                target = (gov.grants.apply.system.attachmentsV10.AttachedFileDataType)get_store().find_element_user(EXPLANATIONATTACHMENT$0, 0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "ExplanationAttachment" element
         */
        public boolean isSetExplanationAttachment()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(EXPLANATIONATTACHMENT$0) != 0;
            }
        }
        
        /**
         * Sets the "ExplanationAttachment" element
         */
        public void setExplanationAttachment(gov.grants.apply.system.attachmentsV10.AttachedFileDataType explanationAttachment)
        {
            generatedSetterHelperImpl(explanationAttachment, EXPLANATIONATTACHMENT$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
        }
        
        /**
         * Appends and returns a new empty "ExplanationAttachment" element
         */
        public gov.grants.apply.system.attachmentsV10.AttachedFileDataType addNewExplanationAttachment()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.attachmentsV10.AttachedFileDataType target = null;
                target = (gov.grants.apply.system.attachmentsV10.AttachedFileDataType)get_store().add_element_user(EXPLANATIONATTACHMENT$0);
                return target;
            }
        }
        
        /**
         * Unsets the "ExplanationAttachment" element
         */
        public void unsetExplanationAttachment()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(EXPLANATIONATTACHMENT$0, 0);
            }
        }
        
        /**
         * Gets the "PerformanceLocation" element
         */
        public gov.grants.apply.system.globalLibraryV20.AddressDataType getPerformanceLocation()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.AddressDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.AddressDataType)get_store().find_element_user(PERFORMANCELOCATION$2, 0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "PerformanceLocation" element
         */
        public boolean isSetPerformanceLocation()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(PERFORMANCELOCATION$2) != 0;
            }
        }
        
        /**
         * Sets the "PerformanceLocation" element
         */
        public void setPerformanceLocation(gov.grants.apply.system.globalLibraryV20.AddressDataType performanceLocation)
        {
            generatedSetterHelperImpl(performanceLocation, PERFORMANCELOCATION$2, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
        }
        
        /**
         * Appends and returns a new empty "PerformanceLocation" element
         */
        public gov.grants.apply.system.globalLibraryV20.AddressDataType addNewPerformanceLocation()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.AddressDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.AddressDataType)get_store().add_element_user(PERFORMANCELOCATION$2);
                return target;
            }
        }
        
        /**
         * Unsets the "PerformanceLocation" element
         */
        public void unsetPerformanceLocation()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(PERFORMANCELOCATION$2, 0);
            }
        }
        
        /**
         * Gets the "AdditionalLocation" element
         */
        public gov.grants.apply.system.globalLibraryV20.YesNoDataType.Enum getAdditionalLocation()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ADDITIONALLOCATION$4, 0);
                if (target == null)
                {
                    return null;
                }
                return (gov.grants.apply.system.globalLibraryV20.YesNoDataType.Enum)target.getEnumValue();
            }
        }
        
        /**
         * Gets (as xml) the "AdditionalLocation" element
         */
        public gov.grants.apply.system.globalLibraryV20.YesNoDataType xgetAdditionalLocation()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.YesNoDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.YesNoDataType)get_store().find_element_user(ADDITIONALLOCATION$4, 0);
                return target;
            }
        }
        
        /**
         * Sets the "AdditionalLocation" element
         */
        public void setAdditionalLocation(gov.grants.apply.system.globalLibraryV20.YesNoDataType.Enum additionalLocation)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ADDITIONALLOCATION$4, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ADDITIONALLOCATION$4);
                }
                target.setEnumValue(additionalLocation);
            }
        }
        
        /**
         * Sets (as xml) the "AdditionalLocation" element
         */
        public void xsetAdditionalLocation(gov.grants.apply.system.globalLibraryV20.YesNoDataType additionalLocation)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.YesNoDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.YesNoDataType)get_store().find_element_user(ADDITIONALLOCATION$4, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalLibraryV20.YesNoDataType)get_store().add_element_user(ADDITIONALLOCATION$4);
                }
                target.set(additionalLocation);
            }
        }
        
        /**
         * Gets the "OrganizationName" element
         */
        public java.lang.String getOrganizationName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ORGANIZATIONNAME$6, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "OrganizationName" element
         */
        public gov.grants.apply.system.globalLibraryV20.OrganizationNameDataType xgetOrganizationName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.OrganizationNameDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.OrganizationNameDataType)get_store().find_element_user(ORGANIZATIONNAME$6, 0);
                return target;
            }
        }
        
        /**
         * True if has "OrganizationName" element
         */
        public boolean isSetOrganizationName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(ORGANIZATIONNAME$6) != 0;
            }
        }
        
        /**
         * Sets the "OrganizationName" element
         */
        public void setOrganizationName(java.lang.String organizationName)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ORGANIZATIONNAME$6, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ORGANIZATIONNAME$6);
                }
                target.setStringValue(organizationName);
            }
        }
        
        /**
         * Sets (as xml) the "OrganizationName" element
         */
        public void xsetOrganizationName(gov.grants.apply.system.globalLibraryV20.OrganizationNameDataType organizationName)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.OrganizationNameDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.OrganizationNameDataType)get_store().find_element_user(ORGANIZATIONNAME$6, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalLibraryV20.OrganizationNameDataType)get_store().add_element_user(ORGANIZATIONNAME$6);
                }
                target.set(organizationName);
            }
        }
        
        /**
         * Unsets the "OrganizationName" element
         */
        public void unsetOrganizationName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(ORGANIZATIONNAME$6, 0);
            }
        }
        
        /**
         * Gets the "AuthorizedRepresentativeName" element
         */
        public gov.grants.apply.system.globalLibraryV20.HumanNameDataType getAuthorizedRepresentativeName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.HumanNameDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.HumanNameDataType)get_store().find_element_user(AUTHORIZEDREPRESENTATIVENAME$8, 0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "AuthorizedRepresentativeName" element
         */
        public void setAuthorizedRepresentativeName(gov.grants.apply.system.globalLibraryV20.HumanNameDataType authorizedRepresentativeName)
        {
            generatedSetterHelperImpl(authorizedRepresentativeName, AUTHORIZEDREPRESENTATIVENAME$8, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
        }
        
        /**
         * Appends and returns a new empty "AuthorizedRepresentativeName" element
         */
        public gov.grants.apply.system.globalLibraryV20.HumanNameDataType addNewAuthorizedRepresentativeName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.HumanNameDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.HumanNameDataType)get_store().add_element_user(AUTHORIZEDREPRESENTATIVENAME$8);
                return target;
            }
        }
        
        /**
         * Gets the "AuthorizedRepresentativeTitle" element
         */
        public java.lang.String getAuthorizedRepresentativeTitle()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AUTHORIZEDREPRESENTATIVETITLE$10, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "AuthorizedRepresentativeTitle" element
         */
        public gov.grants.apply.system.globalLibraryV20.HumanTitleDataType xgetAuthorizedRepresentativeTitle()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.HumanTitleDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.HumanTitleDataType)get_store().find_element_user(AUTHORIZEDREPRESENTATIVETITLE$10, 0);
                return target;
            }
        }
        
        /**
         * Sets the "AuthorizedRepresentativeTitle" element
         */
        public void setAuthorizedRepresentativeTitle(java.lang.String authorizedRepresentativeTitle)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AUTHORIZEDREPRESENTATIVETITLE$10, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(AUTHORIZEDREPRESENTATIVETITLE$10);
                }
                target.setStringValue(authorizedRepresentativeTitle);
            }
        }
        
        /**
         * Sets (as xml) the "AuthorizedRepresentativeTitle" element
         */
        public void xsetAuthorizedRepresentativeTitle(gov.grants.apply.system.globalLibraryV20.HumanTitleDataType authorizedRepresentativeTitle)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.HumanTitleDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.HumanTitleDataType)get_store().find_element_user(AUTHORIZEDREPRESENTATIVETITLE$10, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalLibraryV20.HumanTitleDataType)get_store().add_element_user(AUTHORIZEDREPRESENTATIVETITLE$10);
                }
                target.set(authorizedRepresentativeTitle);
            }
        }
        
        /**
         * Gets the "AuthorizedRepresentativeSignature" element
         */
        public java.lang.String getAuthorizedRepresentativeSignature()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AUTHORIZEDREPRESENTATIVESIGNATURE$12, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "AuthorizedRepresentativeSignature" element
         */
        public gov.grants.apply.system.globalLibraryV20.SignatureDataType xgetAuthorizedRepresentativeSignature()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.SignatureDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.SignatureDataType)get_store().find_element_user(AUTHORIZEDREPRESENTATIVESIGNATURE$12, 0);
                return target;
            }
        }
        
        /**
         * Sets the "AuthorizedRepresentativeSignature" element
         */
        public void setAuthorizedRepresentativeSignature(java.lang.String authorizedRepresentativeSignature)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AUTHORIZEDREPRESENTATIVESIGNATURE$12, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(AUTHORIZEDREPRESENTATIVESIGNATURE$12);
                }
                target.setStringValue(authorizedRepresentativeSignature);
            }
        }
        
        /**
         * Sets (as xml) the "AuthorizedRepresentativeSignature" element
         */
        public void xsetAuthorizedRepresentativeSignature(gov.grants.apply.system.globalLibraryV20.SignatureDataType authorizedRepresentativeSignature)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.SignatureDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.SignatureDataType)get_store().find_element_user(AUTHORIZEDREPRESENTATIVESIGNATURE$12, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalLibraryV20.SignatureDataType)get_store().add_element_user(AUTHORIZEDREPRESENTATIVESIGNATURE$12);
                }
                target.set(authorizedRepresentativeSignature);
            }
        }
        
        /**
         * Gets the "SignedDate" element
         */
        public java.util.Calendar getSignedDate()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SIGNEDDATE$14, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getCalendarValue();
            }
        }
        
        /**
         * Gets (as xml) the "SignedDate" element
         */
        public org.apache.xmlbeans.XmlDate xgetSignedDate()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlDate target = null;
                target = (org.apache.xmlbeans.XmlDate)get_store().find_element_user(SIGNEDDATE$14, 0);
                return target;
            }
        }
        
        /**
         * Sets the "SignedDate" element
         */
        public void setSignedDate(java.util.Calendar signedDate)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SIGNEDDATE$14, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SIGNEDDATE$14);
                }
                target.setCalendarValue(signedDate);
            }
        }
        
        /**
         * Sets (as xml) the "SignedDate" element
         */
        public void xsetSignedDate(org.apache.xmlbeans.XmlDate signedDate)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlDate target = null;
                target = (org.apache.xmlbeans.XmlDate)get_store().find_element_user(SIGNEDDATE$14, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlDate)get_store().add_element_user(SIGNEDDATE$14);
                }
                target.set(signedDate);
            }
        }
        
        /**
         * Gets the "FormVersion" attribute
         */
        public java.lang.String getFormVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(FORMVERSION$16);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(FORMVERSION$16);
                }
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "FormVersion" attribute
         */
        public gov.grants.apply.system.globalLibraryV20.FormVersionDataType xgetFormVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.FormVersionDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.FormVersionDataType)get_store().find_attribute_user(FORMVERSION$16);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalLibraryV20.FormVersionDataType)get_default_attribute_value(FORMVERSION$16);
                }
                return target;
            }
        }
        
        /**
         * Sets the "FormVersion" attribute
         */
        public void setFormVersion(java.lang.String formVersion)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(FORMVERSION$16);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(FORMVERSION$16);
                }
                target.setStringValue(formVersion);
            }
        }
        
        /**
         * Sets (as xml) the "FormVersion" attribute
         */
        public void xsetFormVersion(gov.grants.apply.system.globalLibraryV20.FormVersionDataType formVersion)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalLibraryV20.FormVersionDataType target = null;
                target = (gov.grants.apply.system.globalLibraryV20.FormVersionDataType)get_store().find_attribute_user(FORMVERSION$16);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalLibraryV20.FormVersionDataType)get_store().add_attribute_user(FORMVERSION$16);
                }
                target.set(formVersion);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy