io.github.isotes.vs.model.impl.ValidateStoreManifestDocumentImpl 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: ValidateStoreManifest
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.ValidateStoreManifestDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one ValidateStoreManifest(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class ValidateStoreManifestDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.ValidateStoreManifestDocument
{
private static final long serialVersionUID = 1L;
public ValidateStoreManifestDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName VALIDATESTOREMANIFEST$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "ValidateStoreManifest");
/**
* Gets the "ValidateStoreManifest" element
*/
public io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest getValidateStoreManifest()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest target = null;
target = (io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest)get_store().find_element_user(VALIDATESTOREMANIFEST$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "ValidateStoreManifest" element
*/
public void setValidateStoreManifest(io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest validateStoreManifest)
{
generatedSetterHelperImpl(validateStoreManifest, VALIDATESTOREMANIFEST$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "ValidateStoreManifest" element
*/
public io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest addNewValidateStoreManifest()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest target = null;
target = (io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest)get_store().add_element_user(VALIDATESTOREMANIFEST$0);
return target;
}
}
/**
* An XML ValidateStoreManifest(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class ValidateStoreManifestImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.ValidateStoreManifestDocument.ValidateStoreManifest
{
private static final long serialVersionUID = 1L;
public ValidateStoreManifestImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName INPUT$0 =
new javax.xml.namespace.QName("", "Input");
private static final javax.xml.namespace.QName STOREMANIFESTSCHEMA$2 =
new javax.xml.namespace.QName("", "StoreManifestSchema");
/**
* Gets the "Input" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getInput()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUT$0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "Input" attribute
*/
public void setInput(org.apache.xmlbeans.XmlAnySimpleType input)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUT$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUT$0);
}
target.set(input);
}
}
/**
* Appends and returns a new empty "Input" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewInput()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUT$0);
return target;
}
}
/**
* Gets the "StoreManifestSchema" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getStoreManifestSchema()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(STOREMANIFESTSCHEMA$2);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "StoreManifestSchema" attribute
*/
public void setStoreManifestSchema(org.apache.xmlbeans.XmlAnySimpleType storeManifestSchema)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(STOREMANIFESTSCHEMA$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(STOREMANIFESTSCHEMA$2);
}
target.set(storeManifestSchema);
}
}
/**
* Appends and returns a new empty "StoreManifestSchema" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewStoreManifestSchema()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(STOREMANIFESTSCHEMA$2);
return target;
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy