org.openehr.schemas.v1.impl.DVTIMEImpl 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_TIME
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.DVTIME
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1.impl;
/**
* An XML DV_TIME(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public class DVTIMEImpl extends org.openehr.schemas.v1.impl.DVTEMPORALImpl implements org.openehr.schemas.v1.DVTIME
{
private static final long serialVersionUID = 1L;
public DVTIMEImpl(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");
/**
* Gets the "value" element
*/
public java.lang.String getValue()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VALUE$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "value" element
*/
public org.openehr.schemas.v1.Iso8601Time xgetValue()
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.Iso8601Time target = null;
target = (org.openehr.schemas.v1.Iso8601Time)get_store().find_element_user(VALUE$0, 0);
return target;
}
}
/**
* Sets the "value" element
*/
public void setValue(java.lang.String value)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VALUE$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(VALUE$0);
}
target.setStringValue(value);
}
}
/**
* Sets (as xml) the "value" element
*/
public void xsetValue(org.openehr.schemas.v1.Iso8601Time value)
{
synchronized (monitor())
{
check_orphaned();
org.openehr.schemas.v1.Iso8601Time target = null;
target = (org.openehr.schemas.v1.Iso8601Time)get_store().find_element_user(VALUE$0, 0);
if (target == null)
{
target = (org.openehr.schemas.v1.Iso8601Time)get_store().add_element_user(VALUE$0);
}
target.set(value);
}
}
}