![JAR search and dependency download from the Maven repository](/logo.png)
org.openehr.schemas.v1.impl.DVQUANTIFIEDImpl 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: DV_QUANTIFIED
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.DVQUANTIFIED
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1.impl;
/**
* An XML DV_QUANTIFIED(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public class DVQUANTIFIEDImpl extends org.openehr.schemas.v1.impl.DVORDEREDImpl implements org.openehr.schemas.v1.DVQUANTIFIED
{
private static final long serialVersionUID = 1L;
public DVQUANTIFIEDImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName MAGNITUDESTATUS$0 =
new javax.xml.namespace.QName("http://schemas.openehr.org/v1", "magnitude_status");
/**
* Gets the "magnitude_status" element
*/
public java.lang.String getMagnitudeStatus()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MAGNITUDESTATUS$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "magnitude_status" element
*/
public org.apache.xmlbeans.XmlString xgetMagnitudeStatus()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(MAGNITUDESTATUS$0, 0);
return target;
}
}
/**
* True if has "magnitude_status" element
*/
public boolean isSetMagnitudeStatus()
{
synchronized (monitor())
{
check_orphaned();
return get_store().count_elements(MAGNITUDESTATUS$0) != 0;
}
}
/**
* Sets the "magnitude_status" element
*/
public void setMagnitudeStatus(java.lang.String magnitudeStatus)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MAGNITUDESTATUS$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(MAGNITUDESTATUS$0);
}
target.setStringValue(magnitudeStatus);
}
}
/**
* Sets (as xml) the "magnitude_status" element
*/
public void xsetMagnitudeStatus(org.apache.xmlbeans.XmlString magnitudeStatus)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(MAGNITUDESTATUS$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(MAGNITUDESTATUS$0);
}
target.set(magnitudeStatus);
}
}
/**
* Unsets the "magnitude_status" element
*/
public void unsetMagnitudeStatus()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_element(MAGNITUDESTATUS$0, 0);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy