
org.apache.ode.bpel.pmapi.impl.TDefinitionInfoImpl Maven / Gradle / Ivy
/*
* XML Type: tDefinitionInfo
* Namespace: http://www.apache.org/ode/pmapi/types/2006/08/02/
* Java type: org.apache.ode.bpel.pmapi.TDefinitionInfo
*
* Automatically generated - do not modify.
*/
package org.apache.ode.bpel.pmapi.impl;
/**
* An XML tDefinitionInfo(@http://www.apache.org/ode/pmapi/types/2006/08/02/).
*
* This is a complex type.
*/
public class TDefinitionInfoImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ode.bpel.pmapi.TDefinitionInfo
{
private static final long serialVersionUID = 1L;
public TDefinitionInfoImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName PROCESSNAME$0 =
new javax.xml.namespace.QName("http://www.apache.org/ode/pmapi/types/2006/08/02/", "process-name");
/**
* Gets the "process-name" element
*/
public javax.xml.namespace.QName getProcessName()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(PROCESSNAME$0, 0);
if (target == null)
{
return null;
}
return target.getQNameValue();
}
}
/**
* Gets (as xml) the "process-name" element
*/
public org.apache.xmlbeans.XmlQName xgetProcessName()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlQName target = null;
target = (org.apache.xmlbeans.XmlQName)get_store().find_element_user(PROCESSNAME$0, 0);
return target;
}
}
/**
* Sets the "process-name" element
*/
public void setProcessName(javax.xml.namespace.QName processName)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(PROCESSNAME$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(PROCESSNAME$0);
}
target.setQNameValue(processName);
}
}
/**
* Sets (as xml) the "process-name" element
*/
public void xsetProcessName(org.apache.xmlbeans.XmlQName processName)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlQName target = null;
target = (org.apache.xmlbeans.XmlQName)get_store().find_element_user(PROCESSNAME$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlQName)get_store().add_element_user(PROCESSNAME$0);
}
target.set(processName);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy