![JAR search and dependency download from the Maven repository](/logo.png)
org.openehr.schemas.v1.impl.EVALUATIONImpl 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: EVALUATION
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.EVALUATION
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1.impl;
/**
* An XML EVALUATION(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public class EVALUATIONImpl extends org.openehr.schemas.v1.impl.CAREENTRYImpl implements org.openehr.schemas.v1.EVALUATION
{
private static final long serialVersionUID = 1L;
public EVALUATIONImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName DATA$0 =
new javax.xml.namespace.QName("http://schemas.openehr.org/v1", "data");
/**
* Gets the "data" element
*/
public org.openehr.schemas.v1.ITEMSTRUCTURE getData()
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.ITEMSTRUCTURE target = null;
target = (org.openehr.schemas.v1.ITEMSTRUCTURE)get_store().find_element_user(DATA$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "data" element
*/
public void setData(org.openehr.schemas.v1.ITEMSTRUCTURE data)
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.ITEMSTRUCTURE target = null;
target = (org.openehr.schemas.v1.ITEMSTRUCTURE)get_store().find_element_user(DATA$0, 0);
if (target == null)
{
target = (org.openehr.schemas.v1.ITEMSTRUCTURE)get_store().add_element_user(DATA$0);
}
target.set(data);
}
}
/**
* Appends and returns a new empty "data" element
*/
public org.openehr.schemas.v1.ITEMSTRUCTURE addNewData()
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.ITEMSTRUCTURE target = null;
target = (org.openehr.schemas.v1.ITEMSTRUCTURE)get_store().add_element_user(DATA$0);
return target;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy