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

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

/*
 * An XML document type.
 * Localname: ResolveNonMSBuildProjectOutput
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one ResolveNonMSBuildProjectOutput(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class ResolveNonMSBuildProjectOutputDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument
{
    private static final long serialVersionUID = 1L;
    
    public ResolveNonMSBuildProjectOutputDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName RESOLVENONMSBUILDPROJECTOUTPUT$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "ResolveNonMSBuildProjectOutput");
    
    
    /**
     * Gets the "ResolveNonMSBuildProjectOutput" element
     */
    public io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput getResolveNonMSBuildProjectOutput()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput target = null;
            target = (io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput)get_store().find_element_user(RESOLVENONMSBUILDPROJECTOUTPUT$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "ResolveNonMSBuildProjectOutput" element
     */
    public void setResolveNonMSBuildProjectOutput(io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput resolveNonMSBuildProjectOutput)
    {
        generatedSetterHelperImpl(resolveNonMSBuildProjectOutput, RESOLVENONMSBUILDPROJECTOUTPUT$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "ResolveNonMSBuildProjectOutput" element
     */
    public io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput addNewResolveNonMSBuildProjectOutput()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput target = null;
            target = (io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput)get_store().add_element_user(RESOLVENONMSBUILDPROJECTOUTPUT$0);
            return target;
        }
    }
    /**
     * An XML ResolveNonMSBuildProjectOutput(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class ResolveNonMSBuildProjectOutputImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.ResolveNonMSBuildProjectOutputDocument.ResolveNonMSBuildProjectOutput
    {
        private static final long serialVersionUID = 1L;
        
        public ResolveNonMSBuildProjectOutputImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName PRERESOLVEDPROJECTOUTPUTS$0 = 
            new javax.xml.namespace.QName("", "PreresolvedProjectOutputs");
        private static final javax.xml.namespace.QName PROJECTREFERENCES$2 = 
            new javax.xml.namespace.QName("", "ProjectReferences");
        private static final javax.xml.namespace.QName RESOLVEDOUTPUTPATHS$4 = 
            new javax.xml.namespace.QName("", "ResolvedOutputPaths");
        private static final javax.xml.namespace.QName UNRESOLVEDPROJECTREFERENCES$6 = 
            new javax.xml.namespace.QName("", "UnresolvedProjectReferences");
        
        
        /**
         * Gets the "PreresolvedProjectOutputs" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getPreresolvedProjectOutputs()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PRERESOLVEDPROJECTOUTPUTS$0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "PreresolvedProjectOutputs" attribute
         */
        public boolean isSetPreresolvedProjectOutputs()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(PRERESOLVEDPROJECTOUTPUTS$0) != null;
            }
        }
        
        /**
         * Sets the "PreresolvedProjectOutputs" attribute
         */
        public void setPreresolvedProjectOutputs(org.apache.xmlbeans.XmlAnySimpleType preresolvedProjectOutputs)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PRERESOLVEDPROJECTOUTPUTS$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PRERESOLVEDPROJECTOUTPUTS$0);
                }
                target.set(preresolvedProjectOutputs);
            }
        }
        
        /**
         * Appends and returns a new empty "PreresolvedProjectOutputs" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewPreresolvedProjectOutputs()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PRERESOLVEDPROJECTOUTPUTS$0);
                return target;
            }
        }
        
        /**
         * Unsets the "PreresolvedProjectOutputs" attribute
         */
        public void unsetPreresolvedProjectOutputs()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(PRERESOLVEDPROJECTOUTPUTS$0);
            }
        }
        
        /**
         * Gets the "ProjectReferences" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getProjectReferences()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PROJECTREFERENCES$2);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "ProjectReferences" attribute
         */
        public void setProjectReferences(org.apache.xmlbeans.XmlAnySimpleType projectReferences)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PROJECTREFERENCES$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PROJECTREFERENCES$2);
                }
                target.set(projectReferences);
            }
        }
        
        /**
         * Appends and returns a new empty "ProjectReferences" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewProjectReferences()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PROJECTREFERENCES$2);
                return target;
            }
        }
        
        /**
         * Gets the "ResolvedOutputPaths" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getResolvedOutputPaths()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(RESOLVEDOUTPUTPATHS$4);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "ResolvedOutputPaths" attribute
         */
        public boolean isSetResolvedOutputPaths()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(RESOLVEDOUTPUTPATHS$4) != null;
            }
        }
        
        /**
         * Sets the "ResolvedOutputPaths" attribute
         */
        public void setResolvedOutputPaths(org.apache.xmlbeans.XmlAnySimpleType resolvedOutputPaths)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(RESOLVEDOUTPUTPATHS$4);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(RESOLVEDOUTPUTPATHS$4);
                }
                target.set(resolvedOutputPaths);
            }
        }
        
        /**
         * Appends and returns a new empty "ResolvedOutputPaths" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewResolvedOutputPaths()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(RESOLVEDOUTPUTPATHS$4);
                return target;
            }
        }
        
        /**
         * Unsets the "ResolvedOutputPaths" attribute
         */
        public void unsetResolvedOutputPaths()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(RESOLVEDOUTPUTPATHS$4);
            }
        }
        
        /**
         * Gets the "UnresolvedProjectReferences" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getUnresolvedProjectReferences()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(UNRESOLVEDPROJECTREFERENCES$6);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "UnresolvedProjectReferences" attribute
         */
        public boolean isSetUnresolvedProjectReferences()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(UNRESOLVEDPROJECTREFERENCES$6) != null;
            }
        }
        
        /**
         * Sets the "UnresolvedProjectReferences" attribute
         */
        public void setUnresolvedProjectReferences(org.apache.xmlbeans.XmlAnySimpleType unresolvedProjectReferences)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(UNRESOLVEDPROJECTREFERENCES$6);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(UNRESOLVEDPROJECTREFERENCES$6);
                }
                target.set(unresolvedProjectReferences);
            }
        }
        
        /**
         * Appends and returns a new empty "UnresolvedProjectReferences" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewUnresolvedProjectReferences()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(UNRESOLVEDPROJECTREFERENCES$6);
                return target;
            }
        }
        
        /**
         * Unsets the "UnresolvedProjectReferences" attribute
         */
        public void unsetUnresolvedProjectReferences()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(UNRESOLVEDPROJECTREFERENCES$6);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy