io.github.isotes.vs.model.impl.IsAssemblyDocumentImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vs-model Show documentation
Show all versions of vs-model Show documentation
Generated XMLBeans Java classes for the XML schema of MSBuild project files
The newest version!
/*
* An XML document type.
* Localname: IsAssembly
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.IsAssemblyDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one IsAssembly(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class IsAssemblyDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.IsAssemblyDocument
{
private static final long serialVersionUID = 1L;
public IsAssemblyDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName ISASSEMBLY$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "IsAssembly");
/**
* Gets the "IsAssembly" element
*/
public io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly getIsAssembly()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly target = null;
target = (io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly)get_store().find_element_user(ISASSEMBLY$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "IsAssembly" element
*/
public void setIsAssembly(io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly isAssembly)
{
generatedSetterHelperImpl(isAssembly, ISASSEMBLY$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "IsAssembly" element
*/
public io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly addNewIsAssembly()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly target = null;
target = (io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly)get_store().add_element_user(ISASSEMBLY$0);
return target;
}
}
/**
* An XML IsAssembly(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class IsAssemblyImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.IsAssemblyDocument.IsAssembly
{
private static final long serialVersionUID = 1L;
public IsAssemblyImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName ASSEMBLIES$0 =
new javax.xml.namespace.QName("", "Assemblies");
private static final javax.xml.namespace.QName ASSEMBLYFILES$2 =
new javax.xml.namespace.QName("", "AssemblyFiles");
/**
* Gets the "Assemblies" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getAssemblies()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(ASSEMBLIES$0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* True if has "Assemblies" attribute
*/
public boolean isSetAssemblies()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(ASSEMBLIES$0) != null;
}
}
/**
* Sets the "Assemblies" attribute
*/
public void setAssemblies(org.apache.xmlbeans.XmlAnySimpleType assemblies)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(ASSEMBLIES$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(ASSEMBLIES$0);
}
target.set(assemblies);
}
}
/**
* Appends and returns a new empty "Assemblies" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewAssemblies()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(ASSEMBLIES$0);
return target;
}
}
/**
* Unsets the "Assemblies" attribute
*/
public void unsetAssemblies()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(ASSEMBLIES$0);
}
}
/**
* Gets the "AssemblyFiles" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getAssemblyFiles()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(ASSEMBLYFILES$2);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "AssemblyFiles" attribute
*/
public void setAssemblyFiles(org.apache.xmlbeans.XmlAnySimpleType assemblyFiles)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(ASSEMBLYFILES$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(ASSEMBLYFILES$2);
}
target.set(assemblyFiles);
}
}
/**
* Appends and returns a new empty "AssemblyFiles" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewAssemblyFiles()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(ASSEMBLYFILES$2);
return target;
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy