org.wso2.carbon.humantask.impl.TExpressionImpl Maven / Gradle / Ivy
/*
* XML Type: tExpression
* Namespace: http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803
* Java type: org.wso2.carbon.humantask.TExpression
*
* Automatically generated - do not modify.
*/
package org.wso2.carbon.humantask.impl;
/**
* An XML tExpression(@http://docs.oasis-open.org/ns/bpel4people/ws-humantask/200803).
*
* This is a complex type.
*/
public class TExpressionImpl extends org.wso2.carbon.humantask.impl.TExtensibleMixedContentElementsImpl implements org.wso2.carbon.humantask.TExpression
{
private static final long serialVersionUID = 1L;
public TExpressionImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName EXPRESSIONLANGUAGE$0 =
new javax.xml.namespace.QName("", "expressionLanguage");
/**
* Gets the "expressionLanguage" attribute
*/
public java.lang.String getExpressionLanguage()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXPRESSIONLANGUAGE$0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "expressionLanguage" attribute
*/
public org.apache.xmlbeans.XmlAnyURI xgetExpressionLanguage()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnyURI target = null;
target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_attribute_user(EXPRESSIONLANGUAGE$0);
return target;
}
}
/**
* True if has "expressionLanguage" attribute
*/
public boolean isSetExpressionLanguage()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(EXPRESSIONLANGUAGE$0) != null;
}
}
/**
* Sets the "expressionLanguage" attribute
*/
public void setExpressionLanguage(java.lang.String expressionLanguage)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXPRESSIONLANGUAGE$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(EXPRESSIONLANGUAGE$0);
}
target.setStringValue(expressionLanguage);
}
}
/**
* Sets (as xml) the "expressionLanguage" attribute
*/
public void xsetExpressionLanguage(org.apache.xmlbeans.XmlAnyURI expressionLanguage)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnyURI target = null;
target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_attribute_user(EXPRESSIONLANGUAGE$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_attribute_user(EXPRESSIONLANGUAGE$0);
}
target.set(expressionLanguage);
}
}
/**
* Unsets the "expressionLanguage" attribute
*/
public void unsetExpressionLanguage()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(EXPRESSIONLANGUAGE$0);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy