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

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

/*
 * An XML document type.
 * Localname: UpdateManifest
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.UpdateManifestDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one UpdateManifest(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class UpdateManifestDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.UpdateManifestDocument
{
    private static final long serialVersionUID = 1L;
    
    public UpdateManifestDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName UPDATEMANIFEST$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "UpdateManifest");
    
    
    /**
     * Gets the "UpdateManifest" element
     */
    public io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest getUpdateManifest()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest target = null;
            target = (io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest)get_store().find_element_user(UPDATEMANIFEST$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "UpdateManifest" element
     */
    public void setUpdateManifest(io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest updateManifest)
    {
        generatedSetterHelperImpl(updateManifest, UPDATEMANIFEST$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "UpdateManifest" element
     */
    public io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest addNewUpdateManifest()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest target = null;
            target = (io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest)get_store().add_element_user(UPDATEMANIFEST$0);
            return target;
        }
    }
    /**
     * An XML UpdateManifest(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class UpdateManifestImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.UpdateManifestDocument.UpdateManifest
    {
        private static final long serialVersionUID = 1L;
        
        public UpdateManifestImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName APPLICATIONMANIFEST$0 = 
            new javax.xml.namespace.QName("", "ApplicationManifest");
        private static final javax.xml.namespace.QName TARGETFRAMEWORKVERSION$2 = 
            new javax.xml.namespace.QName("", "TargetFrameworkVersion");
        private static final javax.xml.namespace.QName APPLICATIONPATH$4 = 
            new javax.xml.namespace.QName("", "ApplicationPath");
        private static final javax.xml.namespace.QName INPUTMANIFEST$6 = 
            new javax.xml.namespace.QName("", "InputManifest");
        private static final javax.xml.namespace.QName OUTPUTMANIFEST$8 = 
            new javax.xml.namespace.QName("", "OutputManifest");
        
        
        /**
         * Gets the "ApplicationManifest" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getApplicationManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(APPLICATIONMANIFEST$0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "ApplicationManifest" attribute
         */
        public void setApplicationManifest(org.apache.xmlbeans.XmlAnySimpleType applicationManifest)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(APPLICATIONMANIFEST$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(APPLICATIONMANIFEST$0);
                }
                target.set(applicationManifest);
            }
        }
        
        /**
         * Appends and returns a new empty "ApplicationManifest" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewApplicationManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(APPLICATIONMANIFEST$0);
                return target;
            }
        }
        
        /**
         * Gets the "TargetFrameworkVersion" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getTargetFrameworkVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TARGETFRAMEWORKVERSION$2);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "TargetFrameworkVersion" attribute
         */
        public boolean isSetTargetFrameworkVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(TARGETFRAMEWORKVERSION$2) != null;
            }
        }
        
        /**
         * Sets the "TargetFrameworkVersion" attribute
         */
        public void setTargetFrameworkVersion(org.apache.xmlbeans.XmlAnySimpleType targetFrameworkVersion)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TARGETFRAMEWORKVERSION$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TARGETFRAMEWORKVERSION$2);
                }
                target.set(targetFrameworkVersion);
            }
        }
        
        /**
         * Appends and returns a new empty "TargetFrameworkVersion" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewTargetFrameworkVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TARGETFRAMEWORKVERSION$2);
                return target;
            }
        }
        
        /**
         * Unsets the "TargetFrameworkVersion" attribute
         */
        public void unsetTargetFrameworkVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(TARGETFRAMEWORKVERSION$2);
            }
        }
        
        /**
         * Gets the "ApplicationPath" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getApplicationPath()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(APPLICATIONPATH$4);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "ApplicationPath" attribute
         */
        public void setApplicationPath(org.apache.xmlbeans.XmlAnySimpleType applicationPath)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(APPLICATIONPATH$4);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(APPLICATIONPATH$4);
                }
                target.set(applicationPath);
            }
        }
        
        /**
         * Appends and returns a new empty "ApplicationPath" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewApplicationPath()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(APPLICATIONPATH$4);
                return target;
            }
        }
        
        /**
         * Gets the "InputManifest" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getInputManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUTMANIFEST$6);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "InputManifest" attribute
         */
        public void setInputManifest(org.apache.xmlbeans.XmlAnySimpleType inputManifest)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUTMANIFEST$6);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUTMANIFEST$6);
                }
                target.set(inputManifest);
            }
        }
        
        /**
         * Appends and returns a new empty "InputManifest" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewInputManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUTMANIFEST$6);
                return target;
            }
        }
        
        /**
         * Gets the "OutputManifest" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getOutputManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTMANIFEST$8);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "OutputManifest" attribute
         */
        public boolean isSetOutputManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(OUTPUTMANIFEST$8) != null;
            }
        }
        
        /**
         * Sets the "OutputManifest" attribute
         */
        public void setOutputManifest(org.apache.xmlbeans.XmlAnySimpleType outputManifest)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTMANIFEST$8);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTMANIFEST$8);
                }
                target.set(outputManifest);
            }
        }
        
        /**
         * Appends and returns a new empty "OutputManifest" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewOutputManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTMANIFEST$8);
                return target;
            }
        }
        
        /**
         * Unsets the "OutputManifest" attribute
         */
        public void unsetOutputManifest()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(OUTPUTMANIFEST$8);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy