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

gov.grants.apply.forms.sf424V10.impl.ContactDocumentImpl Maven / Gradle / Ivy

/*
 * An XML document type.
 * Localname: Contact
 * Namespace: http://apply.grants.gov/forms/SF424-V1.0
 * Java type: gov.grants.apply.forms.sf424V10.ContactDocument
 *
 * Automatically generated - do not modify.
 */
package gov.grants.apply.forms.sf424V10.impl;
/**
 * A document containing one Contact(@http://apply.grants.gov/forms/SF424-V1.0) element.
 *
 * This is a complex type.
 */
public class ContactDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424V10.ContactDocument
{
    private static final long serialVersionUID = 1L;
    
    public ContactDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName CONTACT$0 = 
        new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "Contact");
    
    
    /**
     * Gets the "Contact" element
     */
    public gov.grants.apply.forms.sf424V10.ContactDocument.Contact getContact()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.forms.sf424V10.ContactDocument.Contact target = null;
            target = (gov.grants.apply.forms.sf424V10.ContactDocument.Contact)get_store().find_element_user(CONTACT$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "Contact" element
     */
    public void setContact(gov.grants.apply.forms.sf424V10.ContactDocument.Contact contact)
    {
        generatedSetterHelperImpl(contact, CONTACT$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "Contact" element
     */
    public gov.grants.apply.forms.sf424V10.ContactDocument.Contact addNewContact()
    {
        synchronized (monitor())
        {
            check_orphaned();
            gov.grants.apply.forms.sf424V10.ContactDocument.Contact target = null;
            target = (gov.grants.apply.forms.sf424V10.ContactDocument.Contact)get_store().add_element_user(CONTACT$0);
            return target;
        }
    }
    /**
     * An XML Contact(@http://apply.grants.gov/forms/SF424-V1.0).
     *
     * This is a complex type.
     */
    public static class ContactImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424V10.ContactDocument.Contact
    {
        private static final long serialVersionUID = 1L;
        
        public ContactImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName NAMEPREFIX$0 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "NamePrefix");
        private static final javax.xml.namespace.QName GIVENNAME1$2 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "GivenName1");
        private static final javax.xml.namespace.QName GIVENNAME2$4 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "GivenName2");
        private static final javax.xml.namespace.QName FAMILYNAME$6 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "FamilyName");
        private static final javax.xml.namespace.QName NAMESUFFIX$8 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "NameSuffix");
        private static final javax.xml.namespace.QName TELEPHONENUMBER$10 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "TelephoneNumber");
        private static final javax.xml.namespace.QName FAXNUMBER$12 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "FaxNumber");
        private static final javax.xml.namespace.QName ELECTRONICMAILADDRESS$14 = 
            new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "ElectronicMailAddress");
        
        
        /**
         * Gets the "NamePrefix" element
         */
        public java.lang.String getNamePrefix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(NAMEPREFIX$0, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "NamePrefix" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max10Type xgetNamePrefix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max10Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max10Type)get_store().find_element_user(NAMEPREFIX$0, 0);
                return target;
            }
        }
        
        /**
         * True if has "NamePrefix" element
         */
        public boolean isSetNamePrefix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(NAMEPREFIX$0) != 0;
            }
        }
        
        /**
         * Sets the "NamePrefix" element
         */
        public void setNamePrefix(java.lang.String namePrefix)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(NAMEPREFIX$0, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(NAMEPREFIX$0);
                }
                target.setStringValue(namePrefix);
            }
        }
        
        /**
         * Sets (as xml) the "NamePrefix" element
         */
        public void xsetNamePrefix(gov.grants.apply.system.globalV10.StringMin1Max10Type namePrefix)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max10Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max10Type)get_store().find_element_user(NAMEPREFIX$0, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max10Type)get_store().add_element_user(NAMEPREFIX$0);
                }
                target.set(namePrefix);
            }
        }
        
        /**
         * Unsets the "NamePrefix" element
         */
        public void unsetNamePrefix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(NAMEPREFIX$0, 0);
            }
        }
        
        /**
         * Gets the "GivenName1" element
         */
        public java.lang.String getGivenName1()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(GIVENNAME1$2, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "GivenName1" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max35Type xgetGivenName1()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max35Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max35Type)get_store().find_element_user(GIVENNAME1$2, 0);
                return target;
            }
        }
        
        /**
         * True if has "GivenName1" element
         */
        public boolean isSetGivenName1()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(GIVENNAME1$2) != 0;
            }
        }
        
        /**
         * Sets the "GivenName1" element
         */
        public void setGivenName1(java.lang.String givenName1)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(GIVENNAME1$2, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(GIVENNAME1$2);
                }
                target.setStringValue(givenName1);
            }
        }
        
        /**
         * Sets (as xml) the "GivenName1" element
         */
        public void xsetGivenName1(gov.grants.apply.system.globalV10.StringMin1Max35Type givenName1)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max35Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max35Type)get_store().find_element_user(GIVENNAME1$2, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max35Type)get_store().add_element_user(GIVENNAME1$2);
                }
                target.set(givenName1);
            }
        }
        
        /**
         * Unsets the "GivenName1" element
         */
        public void unsetGivenName1()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(GIVENNAME1$2, 0);
            }
        }
        
        /**
         * Gets the "GivenName2" element
         */
        public java.lang.String getGivenName2()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(GIVENNAME2$4, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "GivenName2" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max25Type xgetGivenName2()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(GIVENNAME2$4, 0);
                return target;
            }
        }
        
        /**
         * True if has "GivenName2" element
         */
        public boolean isSetGivenName2()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(GIVENNAME2$4) != 0;
            }
        }
        
        /**
         * Sets the "GivenName2" element
         */
        public void setGivenName2(java.lang.String givenName2)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(GIVENNAME2$4, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(GIVENNAME2$4);
                }
                target.setStringValue(givenName2);
            }
        }
        
        /**
         * Sets (as xml) the "GivenName2" element
         */
        public void xsetGivenName2(gov.grants.apply.system.globalV10.StringMin1Max25Type givenName2)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(GIVENNAME2$4, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().add_element_user(GIVENNAME2$4);
                }
                target.set(givenName2);
            }
        }
        
        /**
         * Unsets the "GivenName2" element
         */
        public void unsetGivenName2()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(GIVENNAME2$4, 0);
            }
        }
        
        /**
         * Gets the "FamilyName" element
         */
        public java.lang.String getFamilyName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FAMILYNAME$6, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "FamilyName" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max60Type xgetFamilyName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max60Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max60Type)get_store().find_element_user(FAMILYNAME$6, 0);
                return target;
            }
        }
        
        /**
         * True if has "FamilyName" element
         */
        public boolean isSetFamilyName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(FAMILYNAME$6) != 0;
            }
        }
        
        /**
         * Sets the "FamilyName" element
         */
        public void setFamilyName(java.lang.String familyName)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FAMILYNAME$6, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FAMILYNAME$6);
                }
                target.setStringValue(familyName);
            }
        }
        
        /**
         * Sets (as xml) the "FamilyName" element
         */
        public void xsetFamilyName(gov.grants.apply.system.globalV10.StringMin1Max60Type familyName)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max60Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max60Type)get_store().find_element_user(FAMILYNAME$6, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max60Type)get_store().add_element_user(FAMILYNAME$6);
                }
                target.set(familyName);
            }
        }
        
        /**
         * Unsets the "FamilyName" element
         */
        public void unsetFamilyName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(FAMILYNAME$6, 0);
            }
        }
        
        /**
         * Gets the "NameSuffix" element
         */
        public java.lang.String getNameSuffix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(NAMESUFFIX$8, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "NameSuffix" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max10Type xgetNameSuffix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max10Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max10Type)get_store().find_element_user(NAMESUFFIX$8, 0);
                return target;
            }
        }
        
        /**
         * True if has "NameSuffix" element
         */
        public boolean isSetNameSuffix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(NAMESUFFIX$8) != 0;
            }
        }
        
        /**
         * Sets the "NameSuffix" element
         */
        public void setNameSuffix(java.lang.String nameSuffix)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(NAMESUFFIX$8, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(NAMESUFFIX$8);
                }
                target.setStringValue(nameSuffix);
            }
        }
        
        /**
         * Sets (as xml) the "NameSuffix" element
         */
        public void xsetNameSuffix(gov.grants.apply.system.globalV10.StringMin1Max10Type nameSuffix)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max10Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max10Type)get_store().find_element_user(NAMESUFFIX$8, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max10Type)get_store().add_element_user(NAMESUFFIX$8);
                }
                target.set(nameSuffix);
            }
        }
        
        /**
         * Unsets the "NameSuffix" element
         */
        public void unsetNameSuffix()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(NAMESUFFIX$8, 0);
            }
        }
        
        /**
         * Gets the "TelephoneNumber" element
         */
        public java.lang.String getTelephoneNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TELEPHONENUMBER$10, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "TelephoneNumber" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max25Type xgetTelephoneNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(TELEPHONENUMBER$10, 0);
                return target;
            }
        }
        
        /**
         * True if has "TelephoneNumber" element
         */
        public boolean isSetTelephoneNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(TELEPHONENUMBER$10) != 0;
            }
        }
        
        /**
         * Sets the "TelephoneNumber" element
         */
        public void setTelephoneNumber(java.lang.String telephoneNumber)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TELEPHONENUMBER$10, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TELEPHONENUMBER$10);
                }
                target.setStringValue(telephoneNumber);
            }
        }
        
        /**
         * Sets (as xml) the "TelephoneNumber" element
         */
        public void xsetTelephoneNumber(gov.grants.apply.system.globalV10.StringMin1Max25Type telephoneNumber)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(TELEPHONENUMBER$10, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().add_element_user(TELEPHONENUMBER$10);
                }
                target.set(telephoneNumber);
            }
        }
        
        /**
         * Unsets the "TelephoneNumber" element
         */
        public void unsetTelephoneNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(TELEPHONENUMBER$10, 0);
            }
        }
        
        /**
         * Gets the "FaxNumber" element
         */
        public java.lang.String getFaxNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FAXNUMBER$12, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "FaxNumber" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max25Type xgetFaxNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(FAXNUMBER$12, 0);
                return target;
            }
        }
        
        /**
         * True if has "FaxNumber" element
         */
        public boolean isSetFaxNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(FAXNUMBER$12) != 0;
            }
        }
        
        /**
         * Sets the "FaxNumber" element
         */
        public void setFaxNumber(java.lang.String faxNumber)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FAXNUMBER$12, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FAXNUMBER$12);
                }
                target.setStringValue(faxNumber);
            }
        }
        
        /**
         * Sets (as xml) the "FaxNumber" element
         */
        public void xsetFaxNumber(gov.grants.apply.system.globalV10.StringMin1Max25Type faxNumber)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(FAXNUMBER$12, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().add_element_user(FAXNUMBER$12);
                }
                target.set(faxNumber);
            }
        }
        
        /**
         * Unsets the "FaxNumber" element
         */
        public void unsetFaxNumber()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(FAXNUMBER$12, 0);
            }
        }
        
        /**
         * Gets the "ElectronicMailAddress" element
         */
        public java.lang.String getElectronicMailAddress()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ELECTRONICMAILADDRESS$14, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "ElectronicMailAddress" element
         */
        public gov.grants.apply.system.globalV10.StringMin1Max80Type xgetElectronicMailAddress()
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max80Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max80Type)get_store().find_element_user(ELECTRONICMAILADDRESS$14, 0);
                return target;
            }
        }
        
        /**
         * True if has "ElectronicMailAddress" element
         */
        public boolean isSetElectronicMailAddress()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(ELECTRONICMAILADDRESS$14) != 0;
            }
        }
        
        /**
         * Sets the "ElectronicMailAddress" element
         */
        public void setElectronicMailAddress(java.lang.String electronicMailAddress)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ELECTRONICMAILADDRESS$14, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ELECTRONICMAILADDRESS$14);
                }
                target.setStringValue(electronicMailAddress);
            }
        }
        
        /**
         * Sets (as xml) the "ElectronicMailAddress" element
         */
        public void xsetElectronicMailAddress(gov.grants.apply.system.globalV10.StringMin1Max80Type electronicMailAddress)
        {
            synchronized (monitor())
            {
                check_orphaned();
                gov.grants.apply.system.globalV10.StringMin1Max80Type target = null;
                target = (gov.grants.apply.system.globalV10.StringMin1Max80Type)get_store().find_element_user(ELECTRONICMAILADDRESS$14, 0);
                if (target == null)
                {
                    target = (gov.grants.apply.system.globalV10.StringMin1Max80Type)get_store().add_element_user(ELECTRONICMAILADDRESS$14);
                }
                target.set(electronicMailAddress);
            }
        }
        
        /**
         * Unsets the "ElectronicMailAddress" element
         */
        public void unsetElectronicMailAddress()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(ELECTRONICMAILADDRESS$14, 0);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy