
io.github.isotes.vs.model.impl.TouchDocumentImpl 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: Touch
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.TouchDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one Touch(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class TouchDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.TouchDocument
{
private static final long serialVersionUID = 1L;
public TouchDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName TOUCH$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "Touch");
/**
* Gets the "Touch" element
*/
public io.github.isotes.vs.model.TouchDocument.Touch getTouch()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.TouchDocument.Touch target = null;
target = (io.github.isotes.vs.model.TouchDocument.Touch)get_store().find_element_user(TOUCH$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "Touch" element
*/
public void setTouch(io.github.isotes.vs.model.TouchDocument.Touch touch)
{
generatedSetterHelperImpl(touch, TOUCH$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "Touch" element
*/
public io.github.isotes.vs.model.TouchDocument.Touch addNewTouch()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.TouchDocument.Touch target = null;
target = (io.github.isotes.vs.model.TouchDocument.Touch)get_store().add_element_user(TOUCH$0);
return target;
}
}
/**
* An XML Touch(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class TouchImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.TouchDocument.Touch
{
private static final long serialVersionUID = 1L;
public TouchImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName ALWAYSCREATE$0 =
new javax.xml.namespace.QName("", "AlwaysCreate");
private static final javax.xml.namespace.QName FILES$2 =
new javax.xml.namespace.QName("", "Files");
private static final javax.xml.namespace.QName FORCETOUCH$4 =
new javax.xml.namespace.QName("", "ForceTouch");
private static final javax.xml.namespace.QName TIME$6 =
new javax.xml.namespace.QName("", "Time");
private static final javax.xml.namespace.QName TOUCHEDFILES$8 =
new javax.xml.namespace.QName("", "TouchedFiles");
/**
* Gets the "AlwaysCreate" attribute
*/
public java.lang.String getAlwaysCreate()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ALWAYSCREATE$0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "AlwaysCreate" attribute
*/
public io.github.isotes.vs.model.Boolean xgetAlwaysCreate()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(ALWAYSCREATE$0);
return target;
}
}
/**
* True if has "AlwaysCreate" attribute
*/
public boolean isSetAlwaysCreate()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(ALWAYSCREATE$0) != null;
}
}
/**
* Sets the "AlwaysCreate" attribute
*/
public void setAlwaysCreate(java.lang.String alwaysCreate)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ALWAYSCREATE$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ALWAYSCREATE$0);
}
target.setStringValue(alwaysCreate);
}
}
/**
* Sets (as xml) the "AlwaysCreate" attribute
*/
public void xsetAlwaysCreate(io.github.isotes.vs.model.Boolean alwaysCreate)
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(ALWAYSCREATE$0);
if (target == null)
{
target = (io.github.isotes.vs.model.Boolean)get_store().add_attribute_user(ALWAYSCREATE$0);
}
target.set(alwaysCreate);
}
}
/**
* Unsets the "AlwaysCreate" attribute
*/
public void unsetAlwaysCreate()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(ALWAYSCREATE$0);
}
}
/**
* Gets the "Files" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getFiles()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(FILES$2);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "Files" attribute
*/
public void setFiles(org.apache.xmlbeans.XmlAnySimpleType files)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(FILES$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(FILES$2);
}
target.set(files);
}
}
/**
* Appends and returns a new empty "Files" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewFiles()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(FILES$2);
return target;
}
}
/**
* Gets the "ForceTouch" attribute
*/
public java.lang.String getForceTouch()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(FORCETOUCH$4);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "ForceTouch" attribute
*/
public io.github.isotes.vs.model.Boolean xgetForceTouch()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(FORCETOUCH$4);
return target;
}
}
/**
* True if has "ForceTouch" attribute
*/
public boolean isSetForceTouch()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(FORCETOUCH$4) != null;
}
}
/**
* Sets the "ForceTouch" attribute
*/
public void setForceTouch(java.lang.String forceTouch)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(FORCETOUCH$4);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(FORCETOUCH$4);
}
target.setStringValue(forceTouch);
}
}
/**
* Sets (as xml) the "ForceTouch" attribute
*/
public void xsetForceTouch(io.github.isotes.vs.model.Boolean forceTouch)
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_attribute_user(FORCETOUCH$4);
if (target == null)
{
target = (io.github.isotes.vs.model.Boolean)get_store().add_attribute_user(FORCETOUCH$4);
}
target.set(forceTouch);
}
}
/**
* Unsets the "ForceTouch" attribute
*/
public void unsetForceTouch()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(FORCETOUCH$4);
}
}
/**
* Gets the "Time" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getTime()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TIME$6);
if (target == null)
{
return null;
}
return target;
}
}
/**
* True if has "Time" attribute
*/
public boolean isSetTime()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(TIME$6) != null;
}
}
/**
* Sets the "Time" attribute
*/
public void setTime(org.apache.xmlbeans.XmlAnySimpleType time)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TIME$6);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TIME$6);
}
target.set(time);
}
}
/**
* Appends and returns a new empty "Time" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewTime()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TIME$6);
return target;
}
}
/**
* Unsets the "Time" attribute
*/
public void unsetTime()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(TIME$6);
}
}
/**
* Gets the "TouchedFiles" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getTouchedFiles()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TOUCHEDFILES$8);
if (target == null)
{
return null;
}
return target;
}
}
/**
* True if has "TouchedFiles" attribute
*/
public boolean isSetTouchedFiles()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(TOUCHEDFILES$8) != null;
}
}
/**
* Sets the "TouchedFiles" attribute
*/
public void setTouchedFiles(org.apache.xmlbeans.XmlAnySimpleType touchedFiles)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TOUCHEDFILES$8);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TOUCHEDFILES$8);
}
target.set(touchedFiles);
}
}
/**
* Appends and returns a new empty "TouchedFiles" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewTouchedFiles()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TOUCHEDFILES$8);
return target;
}
}
/**
* Unsets the "TouchedFiles" attribute
*/
public void unsetTouchedFiles()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(TOUCHEDFILES$8);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy