org.openehr.schemas.v1.impl.TERMBINDINGITEMImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oet-parser Show documentation
Show all versions of oet-parser Show documentation
Java implementation of openEHR OET Template Parser and Flattener
The newest version!
/*
* XML Type: TERM_BINDING_ITEM
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.TERMBINDINGITEM
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1.impl;
/**
* An XML TERM_BINDING_ITEM(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public class TERMBINDINGITEMImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openehr.schemas.v1.TERMBINDINGITEM
{
private static final long serialVersionUID = 1L;
public TERMBINDINGITEMImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName VALUE$0 =
new javax.xml.namespace.QName("http://schemas.openehr.org/v1", "value");
private static final javax.xml.namespace.QName CODE$2 =
new javax.xml.namespace.QName("", "code");
/**
* Gets the "value" element
*/
public org.openehr.schemas.v1.CODEPHRASE getValue()
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.CODEPHRASE target = null;
target = (org.openehr.schemas.v1.CODEPHRASE)get_store().find_element_user(VALUE$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "value" element
*/
public void setValue(org.openehr.schemas.v1.CODEPHRASE value)
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.CODEPHRASE target = null;
target = (org.openehr.schemas.v1.CODEPHRASE)get_store().find_element_user(VALUE$0, 0);
if (target == null)
{
target = (org.openehr.schemas.v1.CODEPHRASE)get_store().add_element_user(VALUE$0);
}
target.set(value);
}
}
/**
* Appends and returns a new empty "value" element
*/
public org.openehr.schemas.v1.CODEPHRASE addNewValue()
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.CODEPHRASE target = null;
target = (org.openehr.schemas.v1.CODEPHRASE)get_store().add_element_user(VALUE$0);
return target;
}
}
/**
* Gets the "code" attribute
*/
public java.lang.String getCode()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CODE$2);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "code" attribute
*/
public org.apache.xmlbeans.XmlString xgetCode()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(CODE$2);
return target;
}
}
/**
* Sets the "code" attribute
*/
public void setCode(java.lang.String code)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CODE$2);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(CODE$2);
}
target.setStringValue(code);
}
}
/**
* Sets (as xml) the "code" attribute
*/
public void xsetCode(org.apache.xmlbeans.XmlString code)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(CODE$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(CODE$2);
}
target.set(code);
}
}
}