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

io.github.isotes.vs.model.impl.ValidateAppxManifestItemsDocumentImpl Maven / Gradle / Ivy

Go to download

Generated XMLBeans Java classes for the XML schema of MSBuild project files

The newest version!
/*
 * An XML document type.
 * Localname: ValidateAppxManifestItems
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.ValidateAppxManifestItemsDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one ValidateAppxManifestItems(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class ValidateAppxManifestItemsDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.ValidateAppxManifestItemsDocument
{
    private static final long serialVersionUID = 1L;
    
    public ValidateAppxManifestItemsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName VALIDATEAPPXMANIFESTITEMS$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "ValidateAppxManifestItems");
    
    
    /**
     * Gets the "ValidateAppxManifestItems" element
     */
    public io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems getValidateAppxManifestItems()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems target = null;
            target = (io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems)get_store().find_element_user(VALIDATEAPPXMANIFESTITEMS$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "ValidateAppxManifestItems" element
     */
    public void setValidateAppxManifestItems(io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems validateAppxManifestItems)
    {
        generatedSetterHelperImpl(validateAppxManifestItems, VALIDATEAPPXMANIFESTITEMS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "ValidateAppxManifestItems" element
     */
    public io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems addNewValidateAppxManifestItems()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems target = null;
            target = (io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems)get_store().add_element_user(VALIDATEAPPXMANIFESTITEMS$0);
            return target;
        }
    }
    /**
     * An XML ValidateAppxManifestItems(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class ValidateAppxManifestItemsImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.ValidateAppxManifestItemsDocument.ValidateAppxManifestItems
    {
        private static final long serialVersionUID = 1L;
        
        public ValidateAppxManifestItemsImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName APPXMANIFESTITEMS$0 = 
            new javax.xml.namespace.QName("", "AppxManifestItems");
        private static final javax.xml.namespace.QName CUSTOMAPPXMANIFESTITEMS$2 = 
            new javax.xml.namespace.QName("", "CustomAppxManifestItems");
        private static final javax.xml.namespace.QName APPXPACKAGEPROJECT$4 = 
            new javax.xml.namespace.QName("", "AppxPackageProject");
        private static final javax.xml.namespace.QName IDENTITYNAME$6 = 
            new javax.xml.namespace.QName("", "IdentityName");
        private static final javax.xml.namespace.QName IDENTITYVERSION$8 = 
            new javax.xml.namespace.QName("", "IdentityVersion");
        
        
        /**
         * Gets the "AppxManifestItems" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(APPXMANIFESTITEMS$0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "AppxManifestItems" attribute
         */
        public boolean isSetAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(APPXMANIFESTITEMS$0) != null;
            }
        }
        
        /**
         * Sets the "AppxManifestItems" attribute
         */
        public void setAppxManifestItems(org.apache.xmlbeans.XmlAnySimpleType appxManifestItems)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(APPXMANIFESTITEMS$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(APPXMANIFESTITEMS$0);
                }
                target.set(appxManifestItems);
            }
        }
        
        /**
         * Appends and returns a new empty "AppxManifestItems" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(APPXMANIFESTITEMS$0);
                return target;
            }
        }
        
        /**
         * Unsets the "AppxManifestItems" attribute
         */
        public void unsetAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(APPXMANIFESTITEMS$0);
            }
        }
        
        /**
         * Gets the "CustomAppxManifestItems" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getCustomAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(CUSTOMAPPXMANIFESTITEMS$2);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "CustomAppxManifestItems" attribute
         */
        public boolean isSetCustomAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(CUSTOMAPPXMANIFESTITEMS$2) != null;
            }
        }
        
        /**
         * Sets the "CustomAppxManifestItems" attribute
         */
        public void setCustomAppxManifestItems(org.apache.xmlbeans.XmlAnySimpleType customAppxManifestItems)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(CUSTOMAPPXMANIFESTITEMS$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(CUSTOMAPPXMANIFESTITEMS$2);
                }
                target.set(customAppxManifestItems);
            }
        }
        
        /**
         * Appends and returns a new empty "CustomAppxManifestItems" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewCustomAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(CUSTOMAPPXMANIFESTITEMS$2);
                return target;
            }
        }
        
        /**
         * Unsets the "CustomAppxManifestItems" attribute
         */
        public void unsetCustomAppxManifestItems()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(CUSTOMAPPXMANIFESTITEMS$2);
            }
        }
        
        /**
         * Gets the "AppxPackageProject" attribute
         */
        public java.lang.String getAppxPackageProject()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(APPXPACKAGEPROJECT$4);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "AppxPackageProject" attribute
         */
        public io.github.isotes.vs.model.Boolean xgetAppxPackageProject()
        {
            synchronized (monitor())
            {
                check_orphaned();
                io.github.isotes.vs.model.Boolean target = null;
                target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(APPXPACKAGEPROJECT$4);
                return target;
            }
        }
        
        /**
         * True if has "AppxPackageProject" attribute
         */
        public boolean isSetAppxPackageProject()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(APPXPACKAGEPROJECT$4) != null;
            }
        }
        
        /**
         * Sets the "AppxPackageProject" attribute
         */
        public void setAppxPackageProject(java.lang.String appxPackageProject)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(APPXPACKAGEPROJECT$4);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(APPXPACKAGEPROJECT$4);
                }
                target.setStringValue(appxPackageProject);
            }
        }
        
        /**
         * Sets (as xml) the "AppxPackageProject" attribute
         */
        public void xsetAppxPackageProject(io.github.isotes.vs.model.Boolean appxPackageProject)
        {
            synchronized (monitor())
            {
                check_orphaned();
                io.github.isotes.vs.model.Boolean target = null;
                target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(APPXPACKAGEPROJECT$4);
                if (target == null)
                {
                    target = (io.github.isotes.vs.model.Boolean)get_store().add_attribute_user(APPXPACKAGEPROJECT$4);
                }
                target.set(appxPackageProject);
            }
        }
        
        /**
         * Unsets the "AppxPackageProject" attribute
         */
        public void unsetAppxPackageProject()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(APPXPACKAGEPROJECT$4);
            }
        }
        
        /**
         * Gets the "IdentityName" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getIdentityName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(IDENTITYNAME$6);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "IdentityName" attribute
         */
        public boolean isSetIdentityName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(IDENTITYNAME$6) != null;
            }
        }
        
        /**
         * Sets the "IdentityName" attribute
         */
        public void setIdentityName(org.apache.xmlbeans.XmlAnySimpleType identityName)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(IDENTITYNAME$6);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(IDENTITYNAME$6);
                }
                target.set(identityName);
            }
        }
        
        /**
         * Appends and returns a new empty "IdentityName" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewIdentityName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(IDENTITYNAME$6);
                return target;
            }
        }
        
        /**
         * Unsets the "IdentityName" attribute
         */
        public void unsetIdentityName()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(IDENTITYNAME$6);
            }
        }
        
        /**
         * Gets the "IdentityVersion" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getIdentityVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(IDENTITYVERSION$8);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "IdentityVersion" attribute
         */
        public boolean isSetIdentityVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(IDENTITYVERSION$8) != null;
            }
        }
        
        /**
         * Sets the "IdentityVersion" attribute
         */
        public void setIdentityVersion(org.apache.xmlbeans.XmlAnySimpleType identityVersion)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(IDENTITYVERSION$8);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(IDENTITYVERSION$8);
                }
                target.set(identityVersion);
            }
        }
        
        /**
         * Appends and returns a new empty "IdentityVersion" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewIdentityVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(IDENTITYVERSION$8);
                return target;
            }
        }
        
        /**
         * Unsets the "IdentityVersion" attribute
         */
        public void unsetIdentityVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(IDENTITYVERSION$8);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy