io.github.isotes.vs.model.impl.PublishReadyToRunDocumentImpl 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: PublishReadyToRun
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.PublishReadyToRunDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one PublishReadyToRun(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class PublishReadyToRunDocumentImpl extends io.github.isotes.vs.model.impl.PropertyDocumentImpl implements io.github.isotes.vs.model.PublishReadyToRunDocument
{
private static final long serialVersionUID = 1L;
public PublishReadyToRunDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName PUBLISHREADYTORUN$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "PublishReadyToRun");
/**
* Gets the "PublishReadyToRun" element
*/
public java.lang.String getPublishReadyToRun()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(PUBLISHREADYTORUN$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "PublishReadyToRun" element
*/
public io.github.isotes.vs.model.Boolean xgetPublishReadyToRun()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(PUBLISHREADYTORUN$0, 0);
return target;
}
}
/**
* Sets the "PublishReadyToRun" element
*/
public void setPublishReadyToRun(java.lang.String publishReadyToRun)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(PUBLISHREADYTORUN$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(PUBLISHREADYTORUN$0);
}
target.setStringValue(publishReadyToRun);
}
}
/**
* Sets (as xml) the "PublishReadyToRun" element
*/
public void xsetPublishReadyToRun(io.github.isotes.vs.model.Boolean publishReadyToRun)
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(PUBLISHREADYTORUN$0, 0);
if (target == null)
{
target = (io.github.isotes.vs.model.Boolean)get_store().add_element_user(PUBLISHREADYTORUN$0);
}
target.set(publishReadyToRun);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy