net.zeroinstall.model.impl.RemoveImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zeroinstall-model Show documentation
Show all versions of zeroinstall-model Show documentation
The Zero Install XSD model transformed by Apache XMLBeans to Java source code.
The newest version!
/*
* XML Type: remove
* Namespace: http://zero-install.sourceforge.net/2004/injector/interface
* Java type: net.zeroinstall.model.Remove
*
* Automatically generated - do not modify.
*/
package net.zeroinstall.model.impl;
/**
* An XML remove(@http://zero-install.sourceforge.net/2004/injector/interface).
*
* This is a complex type.
*/
public class RemoveImpl extends net.zeroinstall.model.impl.RecipeStepImpl implements net.zeroinstall.model.Remove
{
private static final long serialVersionUID = 1L;
public RemoveImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName SOURCE$0 =
new javax.xml.namespace.QName("", "source");
private static final javax.xml.namespace.QName PATH$2 =
new javax.xml.namespace.QName("", "path");
/**
* Gets the "source" attribute
*/
public java.lang.String getSource()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SOURCE$0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "source" attribute
*/
public org.apache.xmlbeans.XmlString xgetSource()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(SOURCE$0);
return target;
}
}
/**
* Sets the "source" attribute
*/
public void setSource(java.lang.String source)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SOURCE$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SOURCE$0);
}
target.setStringValue(source);
}
}
/**
* Sets (as xml) the "source" attribute
*/
public void xsetSource(org.apache.xmlbeans.XmlString source)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(SOURCE$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(SOURCE$0);
}
target.set(source);
}
}
/**
* Gets the "path" attribute
*/
public java.lang.String getPath()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(PATH$2);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "path" attribute
*/
public org.apache.xmlbeans.XmlString xgetPath()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(PATH$2);
return target;
}
}
/**
* Sets the "path" attribute
*/
public void setPath(java.lang.String path)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(PATH$2);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(PATH$2);
}
target.setStringValue(path);
}
}
/**
* Sets (as xml) the "path" attribute
*/
public void xsetPath(org.apache.xmlbeans.XmlString path)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(PATH$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(PATH$2);
}
target.set(path);
}
}
}