io.github.isotes.vs.model.impl.GetFrameworkPathDocumentImpl 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: GetFrameworkPath
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.GetFrameworkPathDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one GetFrameworkPath(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class GetFrameworkPathDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.GetFrameworkPathDocument
{
private static final long serialVersionUID = 1L;
public GetFrameworkPathDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName GETFRAMEWORKPATH$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "GetFrameworkPath");
/**
* Gets the "GetFrameworkPath" element
*/
public io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath getGetFrameworkPath()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath target = null;
target = (io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath)get_store().find_element_user(GETFRAMEWORKPATH$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "GetFrameworkPath" element
*/
public void setGetFrameworkPath(io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath getFrameworkPath)
{
generatedSetterHelperImpl(getFrameworkPath, GETFRAMEWORKPATH$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "GetFrameworkPath" element
*/
public io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath addNewGetFrameworkPath()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath target = null;
target = (io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath)get_store().add_element_user(GETFRAMEWORKPATH$0);
return target;
}
}
/**
* An XML GetFrameworkPath(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class GetFrameworkPathImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.GetFrameworkPathDocument.GetFrameworkPath
{
private static final long serialVersionUID = 1L;
public GetFrameworkPathImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName PATH$0 =
new javax.xml.namespace.QName("", "Path");
/**
* Gets the "Path" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getPath()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PATH$0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* True if has "Path" attribute
*/
public boolean isSetPath()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(PATH$0) != null;
}
}
/**
* Sets the "Path" attribute
*/
public void setPath(org.apache.xmlbeans.XmlAnySimpleType path)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PATH$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PATH$0);
}
target.set(path);
}
}
/**
* Appends and returns a new empty "Path" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewPath()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PATH$0);
return target;
}
}
/**
* Unsets the "Path" attribute
*/
public void unsetPath()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(PATH$0);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy