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

io.github.isotes.vs.model.impl.CodeAnalysisDependentAssemblyPathsDocumentImpl 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: CodeAnalysisDependentAssemblyPaths
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one CodeAnalysisDependentAssemblyPaths(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class CodeAnalysisDependentAssemblyPathsDocumentImpl extends io.github.isotes.vs.model.impl.ItemDocumentImpl implements io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument
{
    private static final long serialVersionUID = 1L;
    
    public CodeAnalysisDependentAssemblyPathsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName CODEANALYSISDEPENDENTASSEMBLYPATHS$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "CodeAnalysisDependentAssemblyPaths");
    
    
    /**
     * Gets the "CodeAnalysisDependentAssemblyPaths" element
     */
    public io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths getCodeAnalysisDependentAssemblyPaths()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths target = null;
            target = (io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths)get_store().find_element_user(CODEANALYSISDEPENDENTASSEMBLYPATHS$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "CodeAnalysisDependentAssemblyPaths" element
     */
    public void setCodeAnalysisDependentAssemblyPaths(io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths codeAnalysisDependentAssemblyPaths)
    {
        generatedSetterHelperImpl(codeAnalysisDependentAssemblyPaths, CODEANALYSISDEPENDENTASSEMBLYPATHS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "CodeAnalysisDependentAssemblyPaths" element
     */
    public io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths addNewCodeAnalysisDependentAssemblyPaths()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths target = null;
            target = (io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths)get_store().add_element_user(CODEANALYSISDEPENDENTASSEMBLYPATHS$0);
            return target;
        }
    }
    /**
     * An XML CodeAnalysisDependentAssemblyPaths(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class CodeAnalysisDependentAssemblyPathsImpl extends io.github.isotes.vs.model.impl.SimpleItemTypeImpl implements io.github.isotes.vs.model.CodeAnalysisDependentAssemblyPathsDocument.CodeAnalysisDependentAssemblyPaths
    {
        private static final long serialVersionUID = 1L;
        
        public CodeAnalysisDependentAssemblyPathsImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName INCLUDE$0 = 
            new javax.xml.namespace.QName("", "Include");
        
        
        /**
         * Gets the "Include" attribute
         */
        public java.lang.String getInclude()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(INCLUDE$0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "Include" attribute
         */
        public org.apache.xmlbeans.XmlString xgetInclude()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlString target = null;
                target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(INCLUDE$0);
                return target;
            }
        }
        
        /**
         * True if has "Include" attribute
         */
        public boolean isSetInclude()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(INCLUDE$0) != null;
            }
        }
        
        /**
         * Sets the "Include" attribute
         */
        public void setInclude(java.lang.String include)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(INCLUDE$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(INCLUDE$0);
                }
                target.setStringValue(include);
            }
        }
        
        /**
         * Sets (as xml) the "Include" attribute
         */
        public void xsetInclude(org.apache.xmlbeans.XmlString include)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlString target = null;
                target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(INCLUDE$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(INCLUDE$0);
                }
                target.set(include);
            }
        }
        
        /**
         * Unsets the "Include" attribute
         */
        public void unsetInclude()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(INCLUDE$0);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy