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

io.github.isotes.vs.model.impl.CopyWinmdArtifactsOutputGroupOutputsDocumentImpl 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: CopyWinmdArtifactsOutputGroupOutputs
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one CopyWinmdArtifactsOutputGroupOutputs(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class CopyWinmdArtifactsOutputGroupOutputsDocumentImpl extends io.github.isotes.vs.model.impl.ItemDocumentImpl implements io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument
{
    private static final long serialVersionUID = 1L;
    
    public CopyWinmdArtifactsOutputGroupOutputsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName COPYWINMDARTIFACTSOUTPUTGROUPOUTPUTS$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "CopyWinmdArtifactsOutputGroupOutputs");
    
    
    /**
     * Gets the "CopyWinmdArtifactsOutputGroupOutputs" element
     */
    public io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs getCopyWinmdArtifactsOutputGroupOutputs()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs target = null;
            target = (io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs)get_store().find_element_user(COPYWINMDARTIFACTSOUTPUTGROUPOUTPUTS$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "CopyWinmdArtifactsOutputGroupOutputs" element
     */
    public void setCopyWinmdArtifactsOutputGroupOutputs(io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs copyWinmdArtifactsOutputGroupOutputs)
    {
        generatedSetterHelperImpl(copyWinmdArtifactsOutputGroupOutputs, COPYWINMDARTIFACTSOUTPUTGROUPOUTPUTS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "CopyWinmdArtifactsOutputGroupOutputs" element
     */
    public io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs addNewCopyWinmdArtifactsOutputGroupOutputs()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs target = null;
            target = (io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs)get_store().add_element_user(COPYWINMDARTIFACTSOUTPUTGROUPOUTPUTS$0);
            return target;
        }
    }
    /**
     * An XML CopyWinmdArtifactsOutputGroupOutputs(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class CopyWinmdArtifactsOutputGroupOutputsImpl extends io.github.isotes.vs.model.impl.SimpleItemTypeImpl implements io.github.isotes.vs.model.CopyWinmdArtifactsOutputGroupOutputsDocument.CopyWinmdArtifactsOutputGroupOutputs
    {
        private static final long serialVersionUID = 1L;
        
        public CopyWinmdArtifactsOutputGroupOutputsImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName TARGETPATH$0 = 
            new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "TargetPath");
        
        
        /**
         * Gets the "TargetPath" element
         */
        public org.apache.xmlbeans.XmlObject getTargetPath()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlObject target = null;
                target = (org.apache.xmlbeans.XmlObject)get_store().find_element_user(TARGETPATH$0, 0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "TargetPath" element
         */
        public boolean isSetTargetPath()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().count_elements(TARGETPATH$0) != 0;
            }
        }
        
        /**
         * Sets the "TargetPath" element
         */
        public void setTargetPath(org.apache.xmlbeans.XmlObject targetPath)
        {
            generatedSetterHelperImpl(targetPath, TARGETPATH$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
        }
        
        /**
         * Appends and returns a new empty "TargetPath" element
         */
        public org.apache.xmlbeans.XmlObject addNewTargetPath()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlObject target = null;
                target = (org.apache.xmlbeans.XmlObject)get_store().add_element_user(TARGETPATH$0);
                return target;
            }
        }
        
        /**
         * Unsets the "TargetPath" element
         */
        public void unsetTargetPath()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_element(TARGETPATH$0, 0);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy