
io.github.isotes.vs.model.impl.GetAppxBundlePlatformsDocumentImpl 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: GetAppxBundlePlatforms
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.GetAppxBundlePlatformsDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one GetAppxBundlePlatforms(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class GetAppxBundlePlatformsDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.GetAppxBundlePlatformsDocument
{
private static final long serialVersionUID = 1L;
public GetAppxBundlePlatformsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName GETAPPXBUNDLEPLATFORMS$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "GetAppxBundlePlatforms");
/**
* Gets the "GetAppxBundlePlatforms" element
*/
public io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms getGetAppxBundlePlatforms()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms target = null;
target = (io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms)get_store().find_element_user(GETAPPXBUNDLEPLATFORMS$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "GetAppxBundlePlatforms" element
*/
public void setGetAppxBundlePlatforms(io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms getAppxBundlePlatforms)
{
generatedSetterHelperImpl(getAppxBundlePlatforms, GETAPPXBUNDLEPLATFORMS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "GetAppxBundlePlatforms" element
*/
public io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms addNewGetAppxBundlePlatforms()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms target = null;
target = (io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms)get_store().add_element_user(GETAPPXBUNDLEPLATFORMS$0);
return target;
}
}
/**
* An XML GetAppxBundlePlatforms(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class GetAppxBundlePlatformsImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.GetAppxBundlePlatformsDocument.GetAppxBundlePlatforms
{
private static final long serialVersionUID = 1L;
public GetAppxBundlePlatformsImpl(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 PACKAGEARCHITECTURE$2 =
new javax.xml.namespace.QName("", "PackageArchitecture");
private static final javax.xml.namespace.QName PLATFORMS$4 =
new javax.xml.namespace.QName("", "Platforms");
private static final javax.xml.namespace.QName LAST$6 =
new javax.xml.namespace.QName("", "Last");
/**
* 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 "PackageArchitecture" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getPackageArchitecture()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PACKAGEARCHITECTURE$2);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "PackageArchitecture" attribute
*/
public void setPackageArchitecture(org.apache.xmlbeans.XmlAnySimpleType packageArchitecture)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PACKAGEARCHITECTURE$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PACKAGEARCHITECTURE$2);
}
target.set(packageArchitecture);
}
}
/**
* Appends and returns a new empty "PackageArchitecture" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewPackageArchitecture()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PACKAGEARCHITECTURE$2);
return target;
}
}
/**
* Gets the "Platforms" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getPlatforms()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PLATFORMS$4);
if (target == null)
{
return null;
}
return target;
}
}
/**
* True if has "Platforms" attribute
*/
public boolean isSetPlatforms()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(PLATFORMS$4) != null;
}
}
/**
* Sets the "Platforms" attribute
*/
public void setPlatforms(org.apache.xmlbeans.XmlAnySimpleType platforms)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PLATFORMS$4);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PLATFORMS$4);
}
target.set(platforms);
}
}
/**
* Appends and returns a new empty "Platforms" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewPlatforms()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PLATFORMS$4);
return target;
}
}
/**
* Unsets the "Platforms" attribute
*/
public void unsetPlatforms()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(PLATFORMS$4);
}
}
/**
* Gets the "Last" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getLast()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(LAST$6);
if (target == null)
{
return null;
}
return target;
}
}
/**
* True if has "Last" attribute
*/
public boolean isSetLast()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(LAST$6) != null;
}
}
/**
* Sets the "Last" attribute
*/
public void setLast(org.apache.xmlbeans.XmlAnySimpleType last)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(LAST$6);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(LAST$6);
}
target.set(last);
}
}
/**
* Appends and returns a new empty "Last" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewLast()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(LAST$6);
return target;
}
}
/**
* Unsets the "Last" attribute
*/
public void unsetLast()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(LAST$6);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy