schemasMicrosoftComOfficeOffice.impl.CTIdMapImpl Maven / Gradle / Ivy
Go to download
XmlBeans generated from the Ecma supplied xsds:
http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%20Part%204%20(DOCX).zip
/*
* XML Type: CT_IdMap
* Namespace: urn:schemas-microsoft-com:office:office
* Java type: schemasMicrosoftComOfficeOffice.CTIdMap
*
* Automatically generated - do not modify.
*/
package schemasMicrosoftComOfficeOffice.impl;
/**
* An XML CT_IdMap(@urn:schemas-microsoft-com:office:office).
*
* This is a complex type.
*/
public class CTIdMapImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements schemasMicrosoftComOfficeOffice.CTIdMap
{
public CTIdMapImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName EXT$0 =
new javax.xml.namespace.QName("urn:schemas-microsoft-com:vml", "ext");
private static final javax.xml.namespace.QName DATA$2 =
new javax.xml.namespace.QName("", "data");
/**
* Gets the "ext" attribute
*/
public schemasMicrosoftComVml.STExt.Enum getExt()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXT$0);
if (target == null)
{
return null;
}
return (schemasMicrosoftComVml.STExt.Enum)target.getEnumValue();
}
}
/**
* Gets (as xml) the "ext" attribute
*/
public schemasMicrosoftComVml.STExt xgetExt()
{
synchronized (monitor())
{
check_orphaned();
schemasMicrosoftComVml.STExt target = null;
target = (schemasMicrosoftComVml.STExt)get_store().find_attribute_user(EXT$0);
return target;
}
}
/**
* True if has "ext" attribute
*/
public boolean isSetExt()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(EXT$0) != null;
}
}
/**
* Sets the "ext" attribute
*/
public void setExt(schemasMicrosoftComVml.STExt.Enum ext)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXT$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(EXT$0);
}
target.setEnumValue(ext);
}
}
/**
* Sets (as xml) the "ext" attribute
*/
public void xsetExt(schemasMicrosoftComVml.STExt ext)
{
synchronized (monitor())
{
check_orphaned();
schemasMicrosoftComVml.STExt target = null;
target = (schemasMicrosoftComVml.STExt)get_store().find_attribute_user(EXT$0);
if (target == null)
{
target = (schemasMicrosoftComVml.STExt)get_store().add_attribute_user(EXT$0);
}
target.set(ext);
}
}
/**
* Unsets the "ext" attribute
*/
public void unsetExt()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(EXT$0);
}
}
/**
* Gets the "data" attribute
*/
public java.lang.String getData()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DATA$2);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "data" attribute
*/
public org.apache.xmlbeans.XmlString xgetData()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(DATA$2);
return target;
}
}
/**
* True if has "data" attribute
*/
public boolean isSetData()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(DATA$2) != null;
}
}
/**
* Sets the "data" attribute
*/
public void setData(java.lang.String data)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DATA$2);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(DATA$2);
}
target.setStringValue(data);
}
}
/**
* Sets (as xml) the "data" attribute
*/
public void xsetData(org.apache.xmlbeans.XmlString data)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(DATA$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(DATA$2);
}
target.set(data);
}
}
/**
* Unsets the "data" attribute
*/
public void unsetData()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(DATA$2);
}
}
}