
io.github.isotes.vs.model.impl.CodeAnalysisIgnoreGeneratedCodeDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: CodeAnalysisIgnoreGeneratedCode
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.CodeAnalysisIgnoreGeneratedCodeDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one CodeAnalysisIgnoreGeneratedCode(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class CodeAnalysisIgnoreGeneratedCodeDocumentImpl extends io.github.isotes.vs.model.impl.PropertyDocumentImpl implements io.github.isotes.vs.model.CodeAnalysisIgnoreGeneratedCodeDocument
{
private static final long serialVersionUID = 1L;
public CodeAnalysisIgnoreGeneratedCodeDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName CODEANALYSISIGNOREGENERATEDCODE$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "CodeAnalysisIgnoreGeneratedCode");
/**
* Gets the "CodeAnalysisIgnoreGeneratedCode" element
*/
public java.lang.String getCodeAnalysisIgnoreGeneratedCode()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CODEANALYSISIGNOREGENERATEDCODE$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "CodeAnalysisIgnoreGeneratedCode" element
*/
public io.github.isotes.vs.model.Boolean xgetCodeAnalysisIgnoreGeneratedCode()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(CODEANALYSISIGNOREGENERATEDCODE$0, 0);
return target;
}
}
/**
* Sets the "CodeAnalysisIgnoreGeneratedCode" element
*/
public void setCodeAnalysisIgnoreGeneratedCode(java.lang.String codeAnalysisIgnoreGeneratedCode)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CODEANALYSISIGNOREGENERATEDCODE$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CODEANALYSISIGNOREGENERATEDCODE$0);
}
target.setStringValue(codeAnalysisIgnoreGeneratedCode);
}
}
/**
* Sets (as xml) the "CodeAnalysisIgnoreGeneratedCode" element
*/
public void xsetCodeAnalysisIgnoreGeneratedCode(io.github.isotes.vs.model.Boolean codeAnalysisIgnoreGeneratedCode)
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(CODEANALYSISIGNOREGENERATEDCODE$0, 0);
if (target == null)
{
target = (io.github.isotes.vs.model.Boolean)get_store().add_element_user(CODEANALYSISIGNOREGENERATEDCODE$0);
}
target.set(codeAnalysisIgnoreGeneratedCode);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy