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

io.github.isotes.vs.model.impl.ResolveManifestFilesDocumentImpl 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: ResolveManifestFiles
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.ResolveManifestFilesDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one ResolveManifestFiles(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class ResolveManifestFilesDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.ResolveManifestFilesDocument
{
    private static final long serialVersionUID = 1L;
    
    public ResolveManifestFilesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName RESOLVEMANIFESTFILES$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "ResolveManifestFiles");
    
    
    /**
     * Gets the "ResolveManifestFiles" element
     */
    public io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles getResolveManifestFiles()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles target = null;
            target = (io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles)get_store().find_element_user(RESOLVEMANIFESTFILES$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "ResolveManifestFiles" element
     */
    public void setResolveManifestFiles(io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles resolveManifestFiles)
    {
        generatedSetterHelperImpl(resolveManifestFiles, RESOLVEMANIFESTFILES$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "ResolveManifestFiles" element
     */
    public io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles addNewResolveManifestFiles()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles target = null;
            target = (io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles)get_store().add_element_user(RESOLVEMANIFESTFILES$0);
            return target;
        }
    }
    /**
     * An XML ResolveManifestFiles(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class ResolveManifestFilesImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.ResolveManifestFilesDocument.ResolveManifestFiles
    {
        private static final long serialVersionUID = 1L;
        
        public ResolveManifestFilesImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName DEPLOYMENTMANIFESTENTRYPOINT$0 = 
            new javax.xml.namespace.QName("", "DeploymentManifestEntryPoint");
        private static final javax.xml.namespace.QName ENTRYPOINT$2 = 
            new javax.xml.namespace.QName("", "EntryPoint");
        private static final javax.xml.namespace.QName EXTRAFILES$4 = 
            new javax.xml.namespace.QName("", "ExtraFiles");
        private static final javax.xml.namespace.QName FILES$6 = 
            new javax.xml.namespace.QName("", "Files");
        private static final javax.xml.namespace.QName MANAGEDASSEMBLIES$8 = 
            new javax.xml.namespace.QName("", "ManagedAssemblies");
        private static final javax.xml.namespace.QName NATIVEASSEMBLIES$10 = 
            new javax.xml.namespace.QName("", "NativeAssemblies");
        private static final javax.xml.namespace.QName OUTPUTASSEMBLIES$12 = 
            new javax.xml.namespace.QName("", "OutputAssemblies");
        private static final javax.xml.namespace.QName OUTPUTDEPLOYMENTMANIFESTENTRYPOINT$14 = 
            new javax.xml.namespace.QName("", "OutputDeploymentManifestEntryPoint");
        private static final javax.xml.namespace.QName OUTPUTENTRYPOINT$16 = 
            new javax.xml.namespace.QName("", "OutputEntryPoint");
        private static final javax.xml.namespace.QName OUTPUTFILES$18 = 
            new javax.xml.namespace.QName("", "OutputFiles");
        private static final javax.xml.namespace.QName PUBLISHFILES$20 = 
            new javax.xml.namespace.QName("", "PublishFiles");
        private static final javax.xml.namespace.QName SATELLITEASSEMBLIES$22 = 
            new javax.xml.namespace.QName("", "SatelliteAssemblies");
        private static final javax.xml.namespace.QName SIGNINGMANIFESTS$24 = 
            new javax.xml.namespace.QName("", "SigningManifests");
        private static final javax.xml.namespace.QName TARGETCULTURE$26 = 
            new javax.xml.namespace.QName("", "TargetCulture");
        private static final javax.xml.namespace.QName TARGETFRAMEWORKVERSION$28 = 
            new javax.xml.namespace.QName("", "TargetFrameworkVersion");
        
        
        /**
         * Gets the "DeploymentManifestEntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(DEPLOYMENTMANIFESTENTRYPOINT$0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "DeploymentManifestEntryPoint" attribute
         */
        public boolean isSetDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(DEPLOYMENTMANIFESTENTRYPOINT$0) != null;
            }
        }
        
        /**
         * Sets the "DeploymentManifestEntryPoint" attribute
         */
        public void setDeploymentManifestEntryPoint(org.apache.xmlbeans.XmlAnySimpleType deploymentManifestEntryPoint)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(DEPLOYMENTMANIFESTENTRYPOINT$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(DEPLOYMENTMANIFESTENTRYPOINT$0);
                }
                target.set(deploymentManifestEntryPoint);
            }
        }
        
        /**
         * Appends and returns a new empty "DeploymentManifestEntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(DEPLOYMENTMANIFESTENTRYPOINT$0);
                return target;
            }
        }
        
        /**
         * Unsets the "DeploymentManifestEntryPoint" attribute
         */
        public void unsetDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(DEPLOYMENTMANIFESTENTRYPOINT$0);
            }
        }
        
        /**
         * Gets the "EntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(ENTRYPOINT$2);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "EntryPoint" attribute
         */
        public boolean isSetEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(ENTRYPOINT$2) != null;
            }
        }
        
        /**
         * Sets the "EntryPoint" attribute
         */
        public void setEntryPoint(org.apache.xmlbeans.XmlAnySimpleType entryPoint)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(ENTRYPOINT$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(ENTRYPOINT$2);
                }
                target.set(entryPoint);
            }
        }
        
        /**
         * Appends and returns a new empty "EntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(ENTRYPOINT$2);
                return target;
            }
        }
        
        /**
         * Unsets the "EntryPoint" attribute
         */
        public void unsetEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(ENTRYPOINT$2);
            }
        }
        
        /**
         * Gets the "ExtraFiles" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getExtraFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(EXTRAFILES$4);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "ExtraFiles" attribute
         */
        public boolean isSetExtraFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(EXTRAFILES$4) != null;
            }
        }
        
        /**
         * Sets the "ExtraFiles" attribute
         */
        public void setExtraFiles(org.apache.xmlbeans.XmlAnySimpleType extraFiles)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(EXTRAFILES$4);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(EXTRAFILES$4);
                }
                target.set(extraFiles);
            }
        }
        
        /**
         * Appends and returns a new empty "ExtraFiles" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewExtraFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(EXTRAFILES$4);
                return target;
            }
        }
        
        /**
         * Unsets the "ExtraFiles" attribute
         */
        public void unsetExtraFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(EXTRAFILES$4);
            }
        }
        
        /**
         * Gets the "Files" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(FILES$6);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "Files" attribute
         */
        public boolean isSetFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(FILES$6) != null;
            }
        }
        
        /**
         * Sets the "Files" attribute
         */
        public void setFiles(org.apache.xmlbeans.XmlAnySimpleType files)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(FILES$6);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(FILES$6);
                }
                target.set(files);
            }
        }
        
        /**
         * Appends and returns a new empty "Files" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(FILES$6);
                return target;
            }
        }
        
        /**
         * Unsets the "Files" attribute
         */
        public void unsetFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(FILES$6);
            }
        }
        
        /**
         * Gets the "ManagedAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getManagedAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(MANAGEDASSEMBLIES$8);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "ManagedAssemblies" attribute
         */
        public boolean isSetManagedAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(MANAGEDASSEMBLIES$8) != null;
            }
        }
        
        /**
         * Sets the "ManagedAssemblies" attribute
         */
        public void setManagedAssemblies(org.apache.xmlbeans.XmlAnySimpleType managedAssemblies)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(MANAGEDASSEMBLIES$8);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(MANAGEDASSEMBLIES$8);
                }
                target.set(managedAssemblies);
            }
        }
        
        /**
         * Appends and returns a new empty "ManagedAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewManagedAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(MANAGEDASSEMBLIES$8);
                return target;
            }
        }
        
        /**
         * Unsets the "ManagedAssemblies" attribute
         */
        public void unsetManagedAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(MANAGEDASSEMBLIES$8);
            }
        }
        
        /**
         * Gets the "NativeAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getNativeAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(NATIVEASSEMBLIES$10);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "NativeAssemblies" attribute
         */
        public boolean isSetNativeAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(NATIVEASSEMBLIES$10) != null;
            }
        }
        
        /**
         * Sets the "NativeAssemblies" attribute
         */
        public void setNativeAssemblies(org.apache.xmlbeans.XmlAnySimpleType nativeAssemblies)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(NATIVEASSEMBLIES$10);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(NATIVEASSEMBLIES$10);
                }
                target.set(nativeAssemblies);
            }
        }
        
        /**
         * Appends and returns a new empty "NativeAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewNativeAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(NATIVEASSEMBLIES$10);
                return target;
            }
        }
        
        /**
         * Unsets the "NativeAssemblies" attribute
         */
        public void unsetNativeAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(NATIVEASSEMBLIES$10);
            }
        }
        
        /**
         * Gets the "OutputAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getOutputAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTASSEMBLIES$12);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "OutputAssemblies" attribute
         */
        public boolean isSetOutputAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(OUTPUTASSEMBLIES$12) != null;
            }
        }
        
        /**
         * Sets the "OutputAssemblies" attribute
         */
        public void setOutputAssemblies(org.apache.xmlbeans.XmlAnySimpleType outputAssemblies)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTASSEMBLIES$12);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTASSEMBLIES$12);
                }
                target.set(outputAssemblies);
            }
        }
        
        /**
         * Appends and returns a new empty "OutputAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewOutputAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTASSEMBLIES$12);
                return target;
            }
        }
        
        /**
         * Unsets the "OutputAssemblies" attribute
         */
        public void unsetOutputAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(OUTPUTASSEMBLIES$12);
            }
        }
        
        /**
         * Gets the "OutputDeploymentManifestEntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getOutputDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTDEPLOYMENTMANIFESTENTRYPOINT$14);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "OutputDeploymentManifestEntryPoint" attribute
         */
        public boolean isSetOutputDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(OUTPUTDEPLOYMENTMANIFESTENTRYPOINT$14) != null;
            }
        }
        
        /**
         * Sets the "OutputDeploymentManifestEntryPoint" attribute
         */
        public void setOutputDeploymentManifestEntryPoint(org.apache.xmlbeans.XmlAnySimpleType outputDeploymentManifestEntryPoint)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTDEPLOYMENTMANIFESTENTRYPOINT$14);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTDEPLOYMENTMANIFESTENTRYPOINT$14);
                }
                target.set(outputDeploymentManifestEntryPoint);
            }
        }
        
        /**
         * Appends and returns a new empty "OutputDeploymentManifestEntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewOutputDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTDEPLOYMENTMANIFESTENTRYPOINT$14);
                return target;
            }
        }
        
        /**
         * Unsets the "OutputDeploymentManifestEntryPoint" attribute
         */
        public void unsetOutputDeploymentManifestEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(OUTPUTDEPLOYMENTMANIFESTENTRYPOINT$14);
            }
        }
        
        /**
         * Gets the "OutputEntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getOutputEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTENTRYPOINT$16);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "OutputEntryPoint" attribute
         */
        public boolean isSetOutputEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(OUTPUTENTRYPOINT$16) != null;
            }
        }
        
        /**
         * Sets the "OutputEntryPoint" attribute
         */
        public void setOutputEntryPoint(org.apache.xmlbeans.XmlAnySimpleType outputEntryPoint)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTENTRYPOINT$16);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTENTRYPOINT$16);
                }
                target.set(outputEntryPoint);
            }
        }
        
        /**
         * Appends and returns a new empty "OutputEntryPoint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewOutputEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTENTRYPOINT$16);
                return target;
            }
        }
        
        /**
         * Unsets the "OutputEntryPoint" attribute
         */
        public void unsetOutputEntryPoint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(OUTPUTENTRYPOINT$16);
            }
        }
        
        /**
         * Gets the "OutputFiles" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getOutputFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTFILES$18);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "OutputFiles" attribute
         */
        public boolean isSetOutputFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(OUTPUTFILES$18) != null;
            }
        }
        
        /**
         * Sets the "OutputFiles" attribute
         */
        public void setOutputFiles(org.apache.xmlbeans.XmlAnySimpleType outputFiles)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUTFILES$18);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTFILES$18);
                }
                target.set(outputFiles);
            }
        }
        
        /**
         * Appends and returns a new empty "OutputFiles" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewOutputFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUTFILES$18);
                return target;
            }
        }
        
        /**
         * Unsets the "OutputFiles" attribute
         */
        public void unsetOutputFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(OUTPUTFILES$18);
            }
        }
        
        /**
         * Gets the "PublishFiles" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getPublishFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PUBLISHFILES$20);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "PublishFiles" attribute
         */
        public boolean isSetPublishFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(PUBLISHFILES$20) != null;
            }
        }
        
        /**
         * Sets the "PublishFiles" attribute
         */
        public void setPublishFiles(org.apache.xmlbeans.XmlAnySimpleType publishFiles)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PUBLISHFILES$20);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PUBLISHFILES$20);
                }
                target.set(publishFiles);
            }
        }
        
        /**
         * Appends and returns a new empty "PublishFiles" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewPublishFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PUBLISHFILES$20);
                return target;
            }
        }
        
        /**
         * Unsets the "PublishFiles" attribute
         */
        public void unsetPublishFiles()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(PUBLISHFILES$20);
            }
        }
        
        /**
         * Gets the "SatelliteAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getSatelliteAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(SATELLITEASSEMBLIES$22);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "SatelliteAssemblies" attribute
         */
        public boolean isSetSatelliteAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(SATELLITEASSEMBLIES$22) != null;
            }
        }
        
        /**
         * Sets the "SatelliteAssemblies" attribute
         */
        public void setSatelliteAssemblies(org.apache.xmlbeans.XmlAnySimpleType satelliteAssemblies)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(SATELLITEASSEMBLIES$22);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(SATELLITEASSEMBLIES$22);
                }
                target.set(satelliteAssemblies);
            }
        }
        
        /**
         * Appends and returns a new empty "SatelliteAssemblies" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewSatelliteAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(SATELLITEASSEMBLIES$22);
                return target;
            }
        }
        
        /**
         * Unsets the "SatelliteAssemblies" attribute
         */
        public void unsetSatelliteAssemblies()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(SATELLITEASSEMBLIES$22);
            }
        }
        
        /**
         * Gets the "SigningManifests" attribute
         */
        public java.lang.String getSigningManifests()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SIGNINGMANIFESTS$24);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "SigningManifests" attribute
         */
        public io.github.isotes.vs.model.Boolean xgetSigningManifests()
        {
            synchronized (monitor())
            {
                check_orphaned();
                io.github.isotes.vs.model.Boolean target = null;
                target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(SIGNINGMANIFESTS$24);
                return target;
            }
        }
        
        /**
         * True if has "SigningManifests" attribute
         */
        public boolean isSetSigningManifests()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(SIGNINGMANIFESTS$24) != null;
            }
        }
        
        /**
         * Sets the "SigningManifests" attribute
         */
        public void setSigningManifests(java.lang.String signingManifests)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SIGNINGMANIFESTS$24);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SIGNINGMANIFESTS$24);
                }
                target.setStringValue(signingManifests);
            }
        }
        
        /**
         * Sets (as xml) the "SigningManifests" attribute
         */
        public void xsetSigningManifests(io.github.isotes.vs.model.Boolean signingManifests)
        {
            synchronized (monitor())
            {
                check_orphaned();
                io.github.isotes.vs.model.Boolean target = null;
                target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(SIGNINGMANIFESTS$24);
                if (target == null)
                {
                    target = (io.github.isotes.vs.model.Boolean)get_store().add_attribute_user(SIGNINGMANIFESTS$24);
                }
                target.set(signingManifests);
            }
        }
        
        /**
         * Unsets the "SigningManifests" attribute
         */
        public void unsetSigningManifests()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(SIGNINGMANIFESTS$24);
            }
        }
        
        /**
         * Gets the "TargetCulture" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getTargetCulture()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TARGETCULTURE$26);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "TargetCulture" attribute
         */
        public boolean isSetTargetCulture()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(TARGETCULTURE$26) != null;
            }
        }
        
        /**
         * Sets the "TargetCulture" attribute
         */
        public void setTargetCulture(org.apache.xmlbeans.XmlAnySimpleType targetCulture)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TARGETCULTURE$26);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TARGETCULTURE$26);
                }
                target.set(targetCulture);
            }
        }
        
        /**
         * Appends and returns a new empty "TargetCulture" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewTargetCulture()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TARGETCULTURE$26);
                return target;
            }
        }
        
        /**
         * Unsets the "TargetCulture" attribute
         */
        public void unsetTargetCulture()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(TARGETCULTURE$26);
            }
        }
        
        /**
         * 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$28);
                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$28) != 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$28);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TARGETFRAMEWORKVERSION$28);
                }
                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$28);
                return target;
            }
        }
        
        /**
         * Unsets the "TargetFrameworkVersion" attribute
         */
        public void unsetTargetFrameworkVersion()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(TARGETFRAMEWORKVERSION$28);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy