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

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

/*
 * An XML document type.
 * Localname: CodeAnalysisOutputToConsole
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.CodeAnalysisOutputToConsoleDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one CodeAnalysisOutputToConsole(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class CodeAnalysisOutputToConsoleDocumentImpl extends io.github.isotes.vs.model.impl.PropertyDocumentImpl implements io.github.isotes.vs.model.CodeAnalysisOutputToConsoleDocument
{
    private static final long serialVersionUID = 1L;
    
    public CodeAnalysisOutputToConsoleDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName CODEANALYSISOUTPUTTOCONSOLE$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "CodeAnalysisOutputToConsole");
    
    
    /**
     * Gets the "CodeAnalysisOutputToConsole" element
     */
    public java.lang.String getCodeAnalysisOutputToConsole()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CODEANALYSISOUTPUTTOCONSOLE$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "CodeAnalysisOutputToConsole" element
     */
    public io.github.isotes.vs.model.Boolean xgetCodeAnalysisOutputToConsole()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.Boolean target = null;
            target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(CODEANALYSISOUTPUTTOCONSOLE$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "CodeAnalysisOutputToConsole" element
     */
    public void setCodeAnalysisOutputToConsole(java.lang.String codeAnalysisOutputToConsole)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CODEANALYSISOUTPUTTOCONSOLE$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CODEANALYSISOUTPUTTOCONSOLE$0);
            }
            target.setStringValue(codeAnalysisOutputToConsole);
        }
    }
    
    /**
     * Sets (as xml) the "CodeAnalysisOutputToConsole" element
     */
    public void xsetCodeAnalysisOutputToConsole(io.github.isotes.vs.model.Boolean codeAnalysisOutputToConsole)
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.Boolean target = null;
            target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(CODEANALYSISOUTPUTTOCONSOLE$0, 0);
            if (target == null)
            {
                target = (io.github.isotes.vs.model.Boolean)get_store().add_element_user(CODEANALYSISOUTPUTTOCONSOLE$0);
            }
            target.set(codeAnalysisOutputToConsole);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy