![JAR search and dependency download from the Maven repository](/logo.png)
org.openehr.schemas.v1.impl.StringDictionaryItemImpl 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: StringDictionaryItem
* Namespace: http://schemas.openehr.org/v1
* Java type: org.openehr.schemas.v1.StringDictionaryItem
*
* Automatically generated - do not modify.
*/
package org.openehr.schemas.v1.impl;
/**
* An XML StringDictionaryItem(@http://schemas.openehr.org/v1).
*
* This is an atomic type that is a restriction of org.openehr.schemas.v1.StringDictionaryItem.
*/
public class StringDictionaryItemImpl extends org.apache.xmlbeans.impl.values.JavaStringHolderEx implements org.openehr.schemas.v1.StringDictionaryItem
{
private static final long serialVersionUID = 1L;
public StringDictionaryItemImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType, true);
}
protected StringDictionaryItemImpl(org.apache.xmlbeans.SchemaType sType, boolean b)
{
super(sType, b);
}
private static final javax.xml.namespace.QName ID$0 =
new javax.xml.namespace.QName("", "id");
/**
* Gets the "id" attribute
*/
public java.lang.String getId()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "id" attribute
*/
public org.apache.xmlbeans.XmlString xgetId()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(ID$0);
return target;
}
}
/**
* Sets the "id" attribute
*/
public void setId(java.lang.String id)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ID$0);
}
target.setStringValue(id);
}
}
/**
* Sets (as xml) the "id" attribute
*/
public void xsetId(org.apache.xmlbeans.XmlString id)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(ID$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(ID$0);
}
target.set(id);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy