io.github.isotes.vs.model.impl.CreatePropertyDocumentImpl 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: CreateProperty
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.CreatePropertyDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one CreateProperty(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class CreatePropertyDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.CreatePropertyDocument
{
private static final long serialVersionUID = 1L;
public CreatePropertyDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName CREATEPROPERTY$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "CreateProperty");
/**
* Gets the "CreateProperty" element
*/
public io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty getCreateProperty()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty target = null;
target = (io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty)get_store().find_element_user(CREATEPROPERTY$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "CreateProperty" element
*/
public void setCreateProperty(io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty createProperty)
{
generatedSetterHelperImpl(createProperty, CREATEPROPERTY$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "CreateProperty" element
*/
public io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty addNewCreateProperty()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty target = null;
target = (io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty)get_store().add_element_user(CREATEPROPERTY$0);
return target;
}
}
/**
* An XML CreateProperty(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class CreatePropertyImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.CreatePropertyDocument.CreateProperty
{
private static final long serialVersionUID = 1L;
public CreatePropertyImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName VALUE$0 =
new javax.xml.namespace.QName("", "Value");
/**
* Gets the "Value" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getValue()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(VALUE$0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* True if has "Value" attribute
*/
public boolean isSetValue()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(VALUE$0) != null;
}
}
/**
* Sets the "Value" attribute
*/
public void setValue(org.apache.xmlbeans.XmlAnySimpleType value)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(VALUE$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(VALUE$0);
}
target.set(value);
}
}
/**
* Appends and returns a new empty "Value" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewValue()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(VALUE$0);
return target;
}
}
/**
* Unsets the "Value" attribute
*/
public void unsetValue()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(VALUE$0);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy