
org.apache.ode.bpel.dd.impl.TScopeEventsImpl Maven / Gradle / Ivy
/*
* XML Type: tScopeEvents
* Namespace: http://www.apache.org/ode/schemas/dd/2007/03
* Java type: org.apache.ode.bpel.dd.TScopeEvents
*
* Automatically generated - do not modify.
*/
package org.apache.ode.bpel.dd.impl;
/**
* An XML tScopeEvents(@http://www.apache.org/ode/schemas/dd/2007/03).
*
* This is a complex type.
*/
public class TScopeEventsImpl extends org.apache.ode.bpel.dd.impl.TEnableEventListImpl implements org.apache.ode.bpel.dd.TScopeEvents
{
private static final long serialVersionUID = 1L;
public TScopeEventsImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName NAME$0 =
new javax.xml.namespace.QName("", "name");
/**
* Gets the "name" attribute
*/
public java.lang.String getName()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAME$0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "name" attribute
*/
public org.apache.xmlbeans.XmlString xgetName()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAME$0);
return target;
}
}
/**
* Sets the "name" attribute
*/
public void setName(java.lang.String name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NAME$0);
}
target.setStringValue(name);
}
}
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlString name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy