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

io.github.isotes.vs.model.impl.RemoveDuplicateSDKReferencesDocumentImpl 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: RemoveDuplicateSDKReferences
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one RemoveDuplicateSDKReferences(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class RemoveDuplicateSDKReferencesDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument
{
    private static final long serialVersionUID = 1L;
    
    public RemoveDuplicateSDKReferencesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName REMOVEDUPLICATESDKREFERENCES$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "RemoveDuplicateSDKReferences");
    
    
    /**
     * Gets the "RemoveDuplicateSDKReferences" element
     */
    public io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences getRemoveDuplicateSDKReferences()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences target = null;
            target = (io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences)get_store().find_element_user(REMOVEDUPLICATESDKREFERENCES$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "RemoveDuplicateSDKReferences" element
     */
    public void setRemoveDuplicateSDKReferences(io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences removeDuplicateSDKReferences)
    {
        generatedSetterHelperImpl(removeDuplicateSDKReferences, REMOVEDUPLICATESDKREFERENCES$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "RemoveDuplicateSDKReferences" element
     */
    public io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences addNewRemoveDuplicateSDKReferences()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences target = null;
            target = (io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences)get_store().add_element_user(REMOVEDUPLICATESDKREFERENCES$0);
            return target;
        }
    }
    /**
     * An XML RemoveDuplicateSDKReferences(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class RemoveDuplicateSDKReferencesImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.RemoveDuplicateSDKReferencesDocument.RemoveDuplicateSDKReferences
    {
        private static final long serialVersionUID = 1L;
        
        public RemoveDuplicateSDKReferencesImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName INPUTS$0 = 
            new javax.xml.namespace.QName("", "Inputs");
        private static final javax.xml.namespace.QName FILTERED$2 = 
            new javax.xml.namespace.QName("", "Filtered");
        
        
        /**
         * Gets the "Inputs" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getInputs()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUTS$0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "Inputs" attribute
         */
        public void setInputs(org.apache.xmlbeans.XmlAnySimpleType inputs)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUTS$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUTS$0);
                }
                target.set(inputs);
            }
        }
        
        /**
         * Appends and returns a new empty "Inputs" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewInputs()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUTS$0);
                return target;
            }
        }
        
        /**
         * Gets the "Filtered" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getFiltered()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(FILTERED$2);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "Filtered" attribute
         */
        public boolean isSetFiltered()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(FILTERED$2) != null;
            }
        }
        
        /**
         * Sets the "Filtered" attribute
         */
        public void setFiltered(org.apache.xmlbeans.XmlAnySimpleType filtered)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(FILTERED$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(FILTERED$2);
                }
                target.set(filtered);
            }
        }
        
        /**
         * Appends and returns a new empty "Filtered" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewFiltered()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(FILTERED$2);
                return target;
            }
        }
        
        /**
         * Unsets the "Filtered" attribute
         */
        public void unsetFiltered()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(FILTERED$2);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy