![JAR search and dependency download from the Maven repository](/logo.png)
org.openehr.schemas.v1.impl.GENERICIDImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-binding Show documentation
Show all versions of xml-binding Show documentation
Java implementation of openEHR RM XML Data Binding Component
The newest version!
/*
* XML Type: GENERIC_ID
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.GENERICID
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1.impl;
/**
* An XML GENERIC_ID(@http://schemas.openehr.org/v1).
*
* This is a complex type.
*/
public class GENERICIDImpl extends org.openehr.schemas.v1.impl.OBJECTIDImpl implements org.openehr.schemas.v1.GENERICID
{
private static final long serialVersionUID = 1L;
public GENERICIDImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName SCHEME$0 =
new javax.xml.namespace.QName("http://schemas.openehr.org/v1", "scheme");
/**
* Gets the "scheme" element
*/
public java.lang.String getScheme()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SCHEME$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "scheme" element
*/
public org.apache.xmlbeans.XmlString xgetScheme()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SCHEME$0, 0);
return target;
}
}
/**
* Sets the "scheme" element
*/
public void setScheme(java.lang.String scheme)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SCHEME$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SCHEME$0);
}
target.setStringValue(scheme);
}
}
/**
* Sets (as xml) the "scheme" element
*/
public void xsetScheme(org.apache.xmlbeans.XmlString scheme)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SCHEME$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(SCHEME$0);
}
target.set(scheme);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy