
io.github.isotes.vs.model.impl.CodeAnalysisImportDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: CodeAnalysisImport
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.CodeAnalysisImportDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one CodeAnalysisImport(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class CodeAnalysisImportDocumentImpl extends io.github.isotes.vs.model.impl.ItemDocumentImpl implements io.github.isotes.vs.model.CodeAnalysisImportDocument
{
private static final long serialVersionUID = 1L;
public CodeAnalysisImportDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName CODEANALYSISIMPORT$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "CodeAnalysisImport");
/**
* Gets the "CodeAnalysisImport" element
*/
public io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport getCodeAnalysisImport()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport target = null;
target = (io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport)get_store().find_element_user(CODEANALYSISIMPORT$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "CodeAnalysisImport" element
*/
public void setCodeAnalysisImport(io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport codeAnalysisImport)
{
generatedSetterHelperImpl(codeAnalysisImport, CODEANALYSISIMPORT$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "CodeAnalysisImport" element
*/
public io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport addNewCodeAnalysisImport()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport target = null;
target = (io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport)get_store().add_element_user(CODEANALYSISIMPORT$0);
return target;
}
}
/**
* An XML CodeAnalysisImport(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class CodeAnalysisImportImpl extends io.github.isotes.vs.model.impl.SimpleItemTypeImpl implements io.github.isotes.vs.model.CodeAnalysisImportDocument.CodeAnalysisImport
{
private static final long serialVersionUID = 1L;
public CodeAnalysisImportImpl(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 - 2025 Weber Informatics LLC | Privacy Policy