![JAR search and dependency download from the Maven repository](/logo.png)
org.openehr.schemas.v1.impl.CCODEREFERENCEImpl 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: C_CODE_REFERENCE
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.CCODEREFERENCE
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1.impl;
/**
* An XML C_CODE_REFERENCE(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public class CCODEREFERENCEImpl extends org.openehr.schemas.v1.impl.CCODEPHRASEImpl implements org.openehr.schemas.v1.CCODEREFERENCE
{
private static final long serialVersionUID = 1L;
public CCODEREFERENCEImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName REFERENCESETURI$0 =
new javax.xml.namespace.QName("http://schemas.openehr.org/v1", "referenceSetUri");
/**
* Gets the "referenceSetUri" element
*/
public java.lang.String getReferenceSetUri()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REFERENCESETURI$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "referenceSetUri" element
*/
public org.apache.xmlbeans.XmlAnyURI xgetReferenceSetUri()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnyURI target = null;
target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(REFERENCESETURI$0, 0);
return target;
}
}
/**
* Sets the "referenceSetUri" element
*/
public void setReferenceSetUri(java.lang.String referenceSetUri)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REFERENCESETURI$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(REFERENCESETURI$0);
}
target.setStringValue(referenceSetUri);
}
}
/**
* Sets (as xml) the "referenceSetUri" element
*/
public void xsetReferenceSetUri(org.apache.xmlbeans.XmlAnyURI referenceSetUri)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnyURI target = null;
target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(REFERENCESETURI$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(REFERENCESETURI$0);
}
target.set(referenceSetUri);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy